/* ============================================================
   Natália Gonçalves — Nutrição Clínica & Saúde da Mulher
   Brand palette from identity PDF: A75B60 / BAB2A0 / D1C9B7 /
   EBA1A1 / EFB7B7 / FFE0E0. Fonts: Cormorant Garamond (display),
   Montserrat Alternates (brand/labels), Mulish (body).
   ============================================================ */

:root {
  /* brand palette */
  --rose:        #A75B60;   /* primary */
  --rose-deep:   #8C474C;
  --rose-soft:   #EBA1A1;
  --rose-light:  #EFB7B7;
  --blush:       #FFE0E0;
  --blush-tint:  #FBEDEA;
  --taupe:       #BAB2A0;
  --sand:        #D1C9B7;
  --sand-light:  #E7E1D4;

  --bg:          #FBF7F2;   /* warm off-white */
  --bg-alt:      #F4ECE4;
  --surface:     #FFFFFF;

  --ink:         #41342F;   /* warm deep brown */
  --ink-soft:    #6E5F58;
  --ink-faint:   #978a83;
  --line:        #E7DCD2;

  --primary:     var(--rose);
  --on-primary:  #FFF7F4;

  /* fonts */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-brand:   "Montserrat Alternates", system-ui, sans-serif;
  --font-body:    "Mulish", system-ui, sans-serif;
  --font-logo:    "Cerotta", "Cormorant Garamond", Georgia, serif;

  /* layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 18px 50px -28px rgba(86, 52, 46, 0.42);
  --shadow-soft: 0 10px 34px -22px rgba(86, 52, 46, 0.35);
}

* { box-sizing: border-box; }

/* Brand logo font. Upload the Cerotta font file to assets/ to enable it;
   gracefully falls back to Cormorant Garamond until then. */
@font-face {
  font-family: "Cerotta";
  src: url("assets/Cerotta.woff2") format("woff2"),
       url("assets/Cerotta.woff") format("woff"),
       url("assets/Cerotta.otf") format("opentype"),
       url("assets/Cerotta.ttf") format("truetype");
  font-weight: 400 700;
  font-display: swap;
}

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }

/* ---------- shared utilities ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.eyebrow {
  font-family: var(--font-brand);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--rose);
  opacity: 0.6;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--rose);
  opacity: 0.6;
}

.section { padding-block: clamp(64px, 9vw, 128px); }
.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); margin-top: 18px; }
.lead { color: var(--ink-soft); font-size: clamp(1.02rem, 1.5vw, 1.18rem); margin-top: 20px; }

em.accent { font-style: italic; color: var(--rose); }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--font-brand);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), background .3s, color .3s, box-shadow .3s, border-color .3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
  box-shadow: 0 14px 30px -14px color-mix(in srgb, var(--primary) 70%, transparent);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 38px -14px color-mix(in srgb, var(--primary) 70%, transparent); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: color-mix(in srgb, var(--ink) 22%, transparent);
}
.btn-ghost:hover { border-color: var(--rose); color: var(--rose); transform: translateY(-3px); }
.btn-light { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-soft); }
.btn-light:hover { transform: translateY(-3px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .4s, box-shadow .4s, padding .4s;
  padding-block: 22px;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 14px;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: flex; flex-direction: column; line-height: 1; gap: 6px; }
.logo img { display: block; width: auto; height: 62px; max-width: none; transition: height .3s; }
.site-header.scrolled .logo img { height: 50px; }
.logo .logo-name {
  font-family: var(--font-logo);
  font-weight: 500;
  font-size: 27px;
  letter-spacing: 0.01em;
  color: var(--ink);
  white-space: nowrap;
}
.logo .logo-sub {
  font-family: var(--font-brand);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  white-space: nowrap;
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav-links { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--font-brand);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  position: relative;
  padding-block: 4px;
  transition: color .25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1.5px; background: var(--rose); transition: width .3s;
}
.nav-links a:hover { color: var(--rose); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav-toggle span + span { margin-top: 5px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: clamp(130px, 16vh, 200px);
  padding-bottom: clamp(60px, 9vw, 120px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -18%; right: -10%;
  width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  background: radial-gradient(circle at 30% 30%, var(--blush), transparent 62%);
  opacity: 0.75;
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-copy { max-width: 560px; }
.hero h1 {
  font-size: clamp(2.7rem, 6vw, 4.7rem);
  font-weight: 500;
  margin-top: 26px;
}
.hero h1 em { font-style: italic; color: var(--rose); }
.hero .lead { margin-top: 26px; max-width: 500px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
.hero-meta {
  display: flex; gap: 30px; margin-top: 44px;
  padding-top: 28px; border-top: 1px solid var(--line);
}
.hero-meta .item { }
.hero-meta .num { font-family: var(--font-display); font-size: 2rem; color: var(--rose); line-height: 1; }
.hero-meta .lbl { font-family: var(--font-brand); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); margin-top: 8px; }

.hero-media { position: relative; }
.hero-photo {
  position: relative;
  border-radius: 220px 220px var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.hero-badge {
  position: absolute;
  left: -26px; bottom: 42px;
  background: var(--surface);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 13px;
  max-width: 235px;
}
.hero-badge .ring {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blush-tint);
  display: grid; place-items: center; color: var(--rose);
  flex-shrink: 0;
}
.hero-badge .ring svg { width: 22px; height: 22px; }
.hero-badge .txt { font-size: 13px; line-height: 1.4; color: var(--ink-soft); }
.hero-badge .txt strong { display: block; font-family: var(--font-brand); font-size: 13px; color: var(--ink); font-weight: 600; }

/* ============================================================
   AUTHORITY
   ============================================================ */
.authority { background: var(--bg-alt); }
.authority .wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.authority h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.authority .body { color: var(--ink-soft); font-size: 1.1rem; }
.authority .body p + p { margin-top: 18px; }
.pillars { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.pillar {
  font-family: var(--font-brand); font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.04em;
  padding: 9px 16px; border-radius: 100px;
  background: var(--surface); color: var(--ink-soft);
  border: 1px solid var(--line);
}

/* ============================================================
   SOBRE
   ============================================================ */
.sobre .wrap { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(36px, 6vw, 84px); align-items: start; }
.sobre-media { position: relative; position: sticky; top: 110px; }
.sobre-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; }
.sobre-photo img { width: 100%; height: 100%; object-fit: cover; }
.sobre-quote {
  margin-top: 22px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--ink);
  padding-left: 22px;
  border-left: 2px solid var(--rose-soft);
}
.sobre h2 { font-size: clamp(2rem, 4vw, 3rem); }
.sobre .body { color: var(--ink-soft); margin-top: 22px; font-size: 1.06rem; }
.sobre .body p + p { margin-top: 16px; }

.formacao { margin-top: 40px; }
.formacao h3 { font-family: var(--font-brand); font-size: 13px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose); }
.formacao ul { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 0; }
.formacao li {
  display: grid; grid-template-columns: 22px 1fr; gap: 14px;
  padding: 15px 0; border-bottom: 1px solid var(--line);
  font-size: 0.99rem;
}
.formacao li:last-child { border-bottom: 0; }
.formacao li .dot { margin-top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--rose-soft); }
.formacao li strong { font-family: var(--font-brand); font-weight: 600; font-size: 0.92rem; color: var(--ink); display: block; }
.formacao li span { color: var(--ink-faint); font-size: 0.88rem; }

/* ============================================================
   ESPECIALIDADES
   ============================================================ */
.espec { background: var(--bg-alt); }
.espec-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 26px); margin-top: 56px;
}
.spec-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s, border-color .45s;
}
.spec-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: transparent; }
.spec-icon {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--blush-tint);
  display: grid; place-items: center;
  color: var(--rose);
  margin-bottom: 24px;
  transition: background .4s;
}
.spec-card:hover .spec-icon { background: var(--blush); }
.spec-icon svg { width: 28px; height: 28px; }
.spec-card h3 { font-size: 1.5rem; }
.spec-card p { color: var(--ink-soft); margin-top: 12px; font-size: 0.97rem; }

/* ---- anchor chips (in-page keyword anchors) ---- */
.espec-anchors {
  margin-top: clamp(34px, 4vw, 52px);
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  text-align: center;
}
.espec-anchors-label {
  font-family: var(--font-brand);
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-faint);
}
.anchor-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 760px; }
.anchor-chips a {
  font-family: var(--font-brand); font-size: 13px; font-weight: 500; letter-spacing: 0.01em;
  padding: 9px 17px; border-radius: 100px;
  background: var(--surface); color: var(--ink-soft);
  border: 1px solid var(--line);
  transition: color .25s, border-color .25s, background .25s, transform .25s;
}
.anchor-chips a:hover { color: var(--rose); border-color: var(--rose-soft); background: var(--blush-tint); transform: translateY(-2px); }

/* offset for fixed header when jumping to an anchor */
.faq-item { scroll-margin-top: 100px; }
/* no-JS / direct-link fallback: open the targeted answer */
.faq-item:target .faq-a { max-height: 1200px; }
.faq-item:target { border-color: var(--rose-soft); }

/* ---- footer keyword link strip ---- */
.footer-areas {
  margin-top: clamp(40px, 5vw, 60px);
  padding-top: 30px;
  border-top: 1px solid color-mix(in srgb,#fff 14%,transparent);
}
.footer-areas-title {
  display: block;
  font-family: var(--font-brand); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rose-soft); margin-bottom: 16px;
}
.footer-areas ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px 26px;
}
.footer-areas a {
  font-size: 0.9rem; color: color-mix(in srgb,#fff 66%,transparent);
  transition: color .25s;
}
.footer-areas a:hover { color: var(--rose-soft); }

/* ============================================================
   COMO FUNCIONA
   ============================================================ */
.como .wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.como-media { position: relative; }
.como-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; }
.como-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.como h2 { font-size: clamp(2rem, 4vw, 3rem); }
.como .lead { margin-bottom: 8px; }
.steps { margin-top: 30px; counter-reset: step; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 20px;
  padding: 18px 0;
  position: relative;
}
.step:not(:last-child) { border-bottom: 1px solid var(--line); }
.step .n {
  counter-increment: step;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--rose);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--rose-soft);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.step .n::before { content: counter(step, decimal-leading-zero); }
.step .txt h4 { font-family: var(--font-brand); font-size: 1.02rem; font-weight: 600; }
.step .txt p { color: var(--ink-soft); margin-top: 5px; font-size: 0.95rem; }
.como-tags { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.como-tag { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-brand); font-size: 13px; font-weight: 500; color: var(--ink); }
.como-tag svg { width: 18px; height: 18px; color: var(--rose); }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depo { background: var(--rose); color: var(--on-primary); position: relative; overflow: hidden; }
.depo::before {
  content: ""; position: absolute; top: -20%; left: -8%;
  width: 40vw; height: 40vw; max-width: 480px; max-height: 480px;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 65%);
}
.depo .eyebrow { color: var(--blush); }
.depo .eyebrow::before, .depo .eyebrow.center::after { background: var(--blush); }
.depo h2 { color: #fff; }
.depo .lead { color: color-mix(in srgb, #fff 80%, transparent); }
.depo-grid { columns: 3; column-gap: 22px; margin-top: 54px; }
.depo-card {
  break-inside: avoid;
  margin-bottom: 22px;
  display: inline-block;
  width: 100%;
  background: color-mix(in srgb, #fff 8%, transparent);
  border: 1px solid color-mix(in srgb, #fff 18%, transparent);
  border-radius: var(--radius);
  padding: 30px 28px;
  backdrop-filter: blur(2px);
}
.depo-card .stars { display: flex; align-items: center; gap: 3px; color: #FBBC05; margin-bottom: 16px; }
.depo-card .stars svg { width: 16px; height: 16px; }
.depo-card .stars .ago { margin-left: 8px; font-family: var(--font-brand); font-size: 0.72rem; letter-spacing: 0.02em; color: color-mix(in srgb,#fff 60%,transparent); }
.depo-card .text { font-family: var(--font-display); font-size: 1.16rem; line-height: 1.5; font-style: italic; color: #fff; }
.depo-card .who { margin-top: 20px; padding-top: 18px; border-top: 1px solid color-mix(in srgb,#fff 14%,transparent); display: flex; align-items: center; gap: 13px; }
.depo-card .av { width: 40px; height: 40px; border-radius: 50%; background: color-mix(in srgb,#fff 16%,transparent); display: grid; place-items: center; font-family: var(--font-brand); font-weight: 600; font-size: 14px; color: #fff; flex-shrink: 0; }
.depo-card .who .meta strong { display: block; font-family: var(--font-brand); font-size: 0.9rem; font-weight: 600; }
.depo-card .who .meta span { font-size: 0.78rem; color: color-mix(in srgb,#fff 72%,transparent); display: inline-flex; align-items: center; gap: 5px; }
.depo-card .who .meta span svg { width: 13px; height: 13px; }
.depo-note { text-align: center; margin-top: 34px; font-size: 0.86rem; color: color-mix(in srgb,#fff 62%,transparent); }
.depo-google {
  margin-top: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
  text-align: center;
}
.depo-google-text {
  max-width: 620px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.45;
  color: #fff;
}
.depo-google .btn svg { width: 20px; height: 20px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq .wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.faq-aside { position: sticky; top: 110px; }
.faq-aside h2 { font-size: clamp(2rem, 4vw, 3rem); }
.faq-aside .lead { margin-bottom: 28px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 0; text-align: left;
  font-family: var(--font-display); font-size: 1.4rem; color: var(--ink);
  transition: color .25s;
}
.faq-q:hover { color: var(--rose); }
.faq-q .ico { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; position: relative; transition: .35s; }
.faq-q .ico::before, .faq-q .ico::after { content: ""; position: absolute; background: var(--rose); border-radius: 2px; transition: .35s; }
.faq-q .ico::before { width: 13px; height: 1.5px; }
.faq-q .ico::after { width: 1.5px; height: 13px; }
.faq-item.open .faq-q .ico { background: var(--rose); border-color: var(--rose); }
.faq-item.open .faq-q .ico::before, .faq-item.open .faq-q .ico::after { background: #fff; }
.faq-item.open .faq-q .ico::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(.2,.8,.2,1); }
.faq-a-inner { padding: 0 0 26px; color: var(--ink-soft); max-width: 620px; font-size: 1rem; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final { padding-block: clamp(40px, 7vw, 80px); }
.cta-card {
  background: linear-gradient(135deg, var(--blush-tint), var(--sand-light));
  border-radius: var(--radius-lg);
  padding: clamp(44px, 6vw, 84px);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.cta-card::before {
  content: ""; position: absolute; bottom: -40%; right: -10%;
  width: 50%; height: 120%;
  background: radial-gradient(circle, var(--blush), transparent 60%);
  opacity: .6;
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); max-width: 760px; margin-inline: auto; }
.cta-card .lead { max-width: 600px; margin-inline: auto; margin-top: 20px; }
.cta-card .btn { margin-top: 34px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: color-mix(in srgb,#fff 78%,transparent); padding-block: clamp(56px, 7vw, 88px) 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(28px,4vw,60px); }
.footer .logo .logo-name { color: #fff; }
.footer .logo .logo-sub { color: var(--rose-soft); }
.footer .logo img { display: block; width: auto; height: 72px; max-width: none; align-self: flex-start; }
.footer-about { margin-top: 20px; max-width: 320px; font-size: 0.95rem; line-height: 1.7; color: color-mix(in srgb,#fff 64%,transparent); }
.footer-col h4 { font-family: var(--font-brand); font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose-soft); margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.footer-col a, .footer-col li { font-size: 0.95rem; color: color-mix(in srgb,#fff 72%,transparent); transition: color .25s; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--rose-soft); margin-top: 3px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid color-mix(in srgb,#fff 18%,transparent); display: grid; place-items: center; transition: .3s; }
.footer-social a:hover { background: var(--rose); border-color: var(--rose); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-bottom {
  margin-top: 52px; padding-top: 26px;
  border-top: 1px solid color-mix(in srgb,#fff 14%,transparent);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.82rem; color: color-mix(in srgb,#fff 52%,transparent);
}
.footer-bottom a:hover { color: #fff; }
.footer-bottom .links { display: flex; gap: 22px; flex-wrap: wrap; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 14px 34px -10px rgba(37,211,102,.6);
  transition: transform .35s; 
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid, .authority .wrap, .sobre .wrap, .como .wrap, .faq .wrap { grid-template-columns: 1fr; }
  .sobre-media, .faq-aside { position: static; }
  .hero-media { max-width: 460px; margin-inline: auto; order: -1; }
  .espec-grid { grid-template-columns: repeat(2, 1fr); }
  .depo-grid { columns: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  body { font-size: 16px; }
  .nav-links, .nav .btn { display: none; }
  .nav-toggle { display: block; }
  .site-header.menu-open .nav-links {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); padding: 16px var(--gutter) 26px;
    box-shadow: var(--shadow-soft);
  }
  .site-header.menu-open .nav-links a { padding-block: 12px; font-size: 16px; }
  .site-header.menu-open .nav .btn { display: inline-flex; margin: 10px var(--gutter) 0; width: calc(100% - var(--gutter)*2); justify-content: center; }
}
@media (max-width: 720px) {
  .espec-grid, .footer-grid { grid-template-columns: 1fr; }
  .depo-grid { columns: 1; }
  .hero-meta { gap: 22px; }
  .hero-badge { left: 0; }
  .footer-bottom { flex-direction: column; }
}
