/* =========================================================
   Evelyn Delogo – Lash Designer
   Estilo: clean, feminino, premium leve
   Paleta inspirada no Instagram (rosé/nude + off-white)
   ========================================================= */

:root{
  --bg: #fbf7f6;            /* off-white rosado */
  --surface: #ffffff;       /* cards */
  --surface-2: #fff3f1;     /* seção alternada */
  --text: #2a2525;          /* cinza quente */
  --muted: #6f6565;         /* texto secundário */
  --brand: #d8a1a8;         /* rosé principal */
  --brand-2: #c88f97;       /* rosé mais forte */
  --border: rgba(42, 37, 37, 0.10);
  --shadow: 0 14px 35px rgba(42, 37, 37, 0.08);
  --shadow-soft: 0 10px 25px rgba(42, 37, 37, 0.06);

  --radius-xl: 22px;
  --radius-lg: 18px;
  --radius-md: 14px;

  --font-title: "Playfair Display", serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --transition: 220ms cubic-bezier(.2,.8,.2,1);
}

html { scroll-behavior: smooth; }

body{
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
}

a { text-decoration: none; }
strong { font-weight: 600; }

/* =========================
   Navbar (blur + clean)
========================= */
.navbar-blur{
  background: rgba(251, 247, 246, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.brand{
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark{
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(216,161,168,0.35), rgba(216,161,168,0.15));
  border: 1px solid rgba(216,161,168,0.35);
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-text{
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text small{
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.nav-link{
  color: var(--text);
  opacity: 0.85;
  transition: var(--transition);
}
.nav-link:hover{ opacity: 1; color: var(--brand-2); }

/* =========================
   Buttons
========================= */
.btn-brand{
  background: var(--brand);
  border: 1px solid rgba(216,161,168,0.55);
  color: #1f1b1b;
  border-radius: 999px;
  padding: 12px 18px;
  transition: var(--transition);
  box-shadow: 0 12px 30px rgba(216,161,168,0.25);
}
.btn-brand:hover{
  background: var(--brand-2);
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(216,161,168,0.28);
}

.btn-brand-sm{ padding: 10px 14px; }

.btn-ghost{
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.6);
  color: var(--text);
  border-radius: 999px;
  padding: 12px 18px;
  transition: var(--transition);
}
.btn-ghost:hover{
  transform: translateY(-1px);
  border-color: rgba(216,161,168,0.5);
  box-shadow: var(--shadow-soft);
}

/* =========================
   Hero
========================= */
.hero{
  position: relative;
  padding: 72px 0 40px;
  overflow: hidden;
}

.hero-glow{
  position: absolute;
  inset: -20% -20% auto -20%;
  height: 420px;
  background:
    radial-gradient(closest-side, rgba(216,161,168,0.35), transparent 70%),
    radial-gradient(closest-side, rgba(216,161,168,0.18), transparent 65%);
  filter: blur(10px);
  pointer-events: none;
}

.pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.55);
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
}

.hero-title{
  font-family: var(--font-title);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.hero-sub{
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 52ch;
}

.accent{
  color: var(--brand-2);
}

.hero-proof{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  max-width: 560px;
}
.proof-item{
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--border);
}
.proof-item i{
  font-size: 18px;
  color: var(--brand-2);
}
.proof-item strong{
  display: block;
  font-size: 13px;
}
.proof-item small{
  display: block;
  font-size: 12px;
  color: var(--muted);
}

/* Hero image card */
.hero-card{
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* ✅ HERO IMG (HTML) */
.hero-photo-img{
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.hero-card-foot{
  display: flex;
  gap: 10px;
  padding: 14px;
  justify-content: space-between;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.75);
}

.mini-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  background: rgba(255,255,255,0.6);
  font-size: 13px;
}
.mini-badge i{ color: var(--brand-2); }

/* =========================
   Sections
========================= */
.section{
  padding: 64px 0;
}

.section-alt{
  background: var(--surface-2);
  border-top: 1px solid rgba(0,0,0,0.03);
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.section-head{
  max-width: 760px;
}
.section-title{
  font-family: var(--font-title);
  font-weight: 600;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  margin-bottom: 10px;
}
.section-sub{
  color: var(--muted);
  margin-bottom: 0;
}

/* =========================
   About photo
========================= */
.photo-frame{
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.6);
  box-shadow: var(--shadow-soft);
  height: 420px; /* mantém altura premium no desktop */
}

/* ✅ ABOUT IMG (HTML) */
.about-photo-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* About cards */
.soft-card{
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  height: 100%;
}
.soft-icon{
  width: 42px; height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(216,161,168,0.16);
  border: 1px solid rgba(216,161,168,0.26);
  color: var(--brand-2);
  flex: 0 0 auto;
}
.soft-title{
  font-size: 15px;
  margin: 0 0 4px 0;
}
.soft-text{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* =========================
   Tabs
========================= */
.tabs-wrap{
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--border);
}

.tab-btn{
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 10px 18px;
  border-radius: 999px;
  transition: var(--transition);
  font-weight: 500;
}
.tab-btn:hover{ color: var(--text); }
.tab-btn.is-active{
  background: rgba(216,161,168,0.20);
  color: var(--text);
  box-shadow: 0 10px 22px rgba(216,161,168,0.14);
  border: 1px solid rgba(216,161,168,0.28);
}

.tab-panel{
  display: none;
  opacity: 0;
  transform: translateY(6px);
  transition: var(--transition);
}
.tab-panel.is-active{
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   Service cards (icons elegantes)
========================= */
.service-card{
  padding: 18px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.75);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.service-card:hover{
  transform: translateY(-3px);
  border-color: rgba(216,161,168,0.35);
  box-shadow: var(--shadow);
}
.service-icon{
  width: 48px; height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(216,161,168,0.16);
  border: 1px solid rgba(216,161,168,0.26);
  color: var(--brand-2);
  margin-bottom: 12px;
}
.service-icon i{ font-size: 22px; }

.service-title{
  font-family: var(--font-title);
  font-size: 1.05rem;
  margin: 0 0 6px 0;
}
.service-text{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* =========================
   Results gallery
========================= */
.result-card{
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.6);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.result-card:hover{
  transform: translateY(-2px);
  border-color: rgba(216,161,168,0.35);
  box-shadow: var(--shadow);
}

/* ✅ RESULT IMG (HTML) */
.result-img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* =========================
   Form
========================= */
.form-card{
  padding: 20px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.78);
  box-shadow: var(--shadow);
}

.form-label{
  font-weight: 500;
  color: var(--text);
}

.form-control, .form-select{
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 11px 12px;
}
.form-control:focus, .form-select:focus{
  border-color: rgba(216,161,168,0.6);
  box-shadow: 0 0 0 0.25rem rgba(216,161,168,0.22);
}

.form-note{
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 8px;
  align-items: center;
}

.hint{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.65);
  color: var(--muted);
}
.hint i{
  color: var(--brand-2);
  font-size: 18px;
}

/* =========================
   Location
========================= */
.location-card{
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.75);
  box-shadow: var(--shadow-soft);
  flex-wrap: wrap;
}
.location-icon{
  width: 50px; height: 50px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(216,161,168,0.16);
  border: 1px solid rgba(216,161,168,0.26);
  color: var(--brand-2);
  flex: 0 0 auto;
}
.location-icon i{ font-size: 22px; }
.location-title{
  font-family: var(--font-title);
  margin: 0 0 4px 0;
}
.location-text{ color: var(--muted); }

/* =========================
   Footer
========================= */
.footer{
  padding: 26px 0;
  border-top: 1px solid rgba(0,0,0,0.04);
  background: rgba(255,255,255,0.55);
}
.footer-left{ color: var(--muted); }
.footer-left strong{ color: var(--text); }

.footer-link{
  color: var(--text);
  opacity: 0.9;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-link:hover{
  opacity: 1;
  color: var(--brand-2);
}

/* =========================
   Reveal animation (IntersectionObserver)
========================= */
[data-reveal]{
  opacity: 0;
  transform: translateY(10px);
  transition: 650ms cubic-bezier(.2,.8,.2,1);
  transition-property: opacity, transform;
}
.is-revealed{
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  [data-reveal]{ transition: none; opacity: 1; transform: none; }
  .service-card:hover, .result-card:hover, .btn-brand:hover, .btn-ghost:hover{ transform: none; }
}

/* =========================
   Responsivo refinado
========================= */
@media (max-width: 991px){
  .hero{ padding-top: 52px; }
  .hero-proof{ grid-template-columns: 1fr; max-width: 420px; }

  /* ✅ ajusta alturas das imagens no mobile */
  .hero-photo-img{ height: 300px; }
  .photo-frame{ height: 340px; }
}
/* =========================
   Logo no Header (imagem)
   ========================= */

.brand-mark{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden; /* mantém o formato circular */
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-mark img{
  width: 100%;
  height: 100%;
  object-fit: cover; /* evita distorção da logo */
}
