/* ============================================================
   ALETHEA SEITA — NUTRICIONISTA
   Estilo Apple premium · Paleta oficial da marca
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Brand palette (extracted from official logo) */
  --navy:        #1B3D4D;
  --navy-deep:   #0F2530;
  --teal:        #3D8B9E;
  --teal-light:  #6BA9B8;
  --teal-soft:   #B8D4DC;
  --cream:       #FAF7F2;
  --sand:        #EFE9DF;
  --sand-warm:   #E4D9C7;
  --ink:         #0F2530;
  --ink-soft:    #3A4A55;
  --muted:       #7A8893;
  --line:        rgba(15, 37, 48, 0.08);
  --line-light:  rgba(255, 255, 255, 0.12);
  --white:       #FFFFFF;

  /* WhatsApp brand */
  --wa: #25D366;

  /* Type scale */
  --f-display: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
  --f-brand:   'Montserrat', -apple-system, system-ui, sans-serif;
  --f-editorial: 'Cormorant Garamond', Georgia, serif;

  /* Spacing */
  --gutter: clamp(1.25rem, 3vw, 2rem);
  --section-y: clamp(5rem, 10vw, 9rem);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Radius */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-xl: 48px;
}

/* ---------- RESET ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--teal); color: white; }

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--section-y) 0;
  position: relative;
}

.section--cream { background: var(--cream); }
.section--navy {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.section--navy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(61, 139, 158, 0.25), transparent 60%);
  pointer-events: none;
}

.section__header {
  max-width: 760px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  text-align: center;
}
.section__lede {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--ink-soft);
  margin-top: 1.5rem;
}

/* ---------- TYPE ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--f-brand);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
}
.eyebrow--light { color: var(--teal-light); }
.eyebrow--teal { color: var(--teal); }

.h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4.2vw, 3.75rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.h2--light { color: white; }
.h2 em {
  font-family: var(--f-editorial);
  font-style: italic;
  font-weight: 500;
  color: var(--teal);
}
.h2--light em { color: var(--teal-light); }

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}
.lede--light { color: rgba(255, 255, 255, 0.78); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  height: 52px;
  padding: 0 1.75rem;
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 999px;
  transition: transform 0.4s var(--ease), background 0.3s ease, color 0.3s ease, box-shadow 0.4s var(--ease);
  white-space: nowrap;
  position: relative;
  will-change: transform;
}
.btn--lg { height: 60px; padding: 0 2.25rem; font-size: 1rem; }

.btn--primary {
  background: var(--navy);
  color: white;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 10px 30px -10px rgba(27, 61, 77, 0.45);
}
.btn--primary:hover {
  background: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px rgba(61, 139, 158, 0.55);
}

.btn--primary.btn--on-dark {
  background: white;
  color: var(--navy);
  box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 14px 36px -10px rgba(0,0,0,0.4);
}
.btn--primary.btn--on-dark:hover {
  background: var(--teal-light);
  color: var(--navy-deep);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
  color: var(--ink);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.btn--ghost:hover {
  background: white;
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

.btn--ghost.btn--on-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: white;
}
.btn--ghost.btn--on-dark:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
  transform: translateY(-2px);
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.85rem 0;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(250, 247, 242, 0.78);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  box-shadow: 0 1px 0 var(--line);
  padding: 0.5rem 0;
}

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo {
  height: 58px;
  width: auto;
  transition: height 0.4s var(--ease);
}
.nav.is-scrolled .nav__logo { height: 50px; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  flex: 1;
  justify-content: center;
}
.nav__menu a {
  font-size: 0.95rem;
  font-weight: 450;
  color: var(--ink);
  position: relative;
  transition: color 0.3s ease;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--teal);
  transition: width 0.4s var(--ease), left 0.4s var(--ease);
}
.nav__menu a:hover { color: var(--teal); }
.nav__menu a:hover::after { width: 100%; left: 0; }

.nav__cta { height: 44px; padding: 0 1.35rem; font-size: 0.9rem; }

.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
}
.nav__toggle span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.3s ease, top 0.4s var(--ease);
}
.nav__toggle span:nth-child(1) { top: 13px; }
.nav__toggle span:nth-child(2) { top: 19px; }
.nav__toggle span:nth-child(3) { top: 25px; }

.nav__toggle.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

.nav__mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 100px var(--gutter) 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transform: translateY(-110%);
  transition: transform 0.5s var(--ease);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.08);
}
.nav__mobile.is-open { transform: translateY(0); }
.nav__mobile a {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
}
.nav__mobile .btn { align-self: flex-start; margin-top: 1rem; }

/* ---------- HERO ---------- */
.hero {
  padding-top: calc(var(--section-y) + 70px);
  padding-bottom: var(--section-y);
  position: relative;
  background: linear-gradient(180deg, var(--cream) 0%, #F4EFE6 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -15%;
  width: 65vw;
  height: 65vw;
  background: radial-gradient(circle, rgba(61, 139, 158, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(184, 212, 220, 0.35) 0%, transparent 60%);
  pointer-events: none;
}

.hero__grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-family: var(--f-editorial);
  font-style: italic;
  font-weight: 500;
  color: var(--teal);
}

.hero__lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 2.25rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 3rem;
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero__trust > div { display: flex; flex-direction: column; gap: 0.15rem; }
.hero__trust strong {
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.hero__trust span {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.35;
}

.hero__visual { position: relative; }
.hero__photo {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 30px 80px -20px rgba(15, 37, 48, 0.35),
    0 60px 120px -40px rgba(61, 139, 158, 0.25);
  transform: translateZ(0);
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--ease-out);
}
.hero__photo:hover img { transform: scale(1.04); }

.hero__photo-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(61, 139, 158, 0.4), transparent 50%);
  border-radius: var(--r-xl);
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.5;
}

.hero__badge {
  position: absolute;
  bottom: -28px;
  left: -28px;
  width: 110px;
  height: 110px;
  background: var(--navy);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 20px 40px -10px rgba(27, 61, 77, 0.5);
  padding: 16px;
}
.hero__badge img { width: 100%; height: 100%; object-fit: contain; }

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-brand);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 1;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.5); transform-origin: top; opacity: 0.5; }
  50%      { transform: scaleY(1);   transform-origin: top; opacity: 1; }
}

/* ---------- TWO COL ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.two-col--reverse .two-col__media { order: 2; }

.two-col__media { position: relative; }
.rounded-img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: 0 30px 60px -20px rgba(15, 37, 48, 0.25);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: white;
  padding: 1.25rem 1.5rem;
  border-radius: var(--r-md);
  box-shadow: 0 20px 40px -10px rgba(15, 37, 48, 0.18);
  max-width: 260px;
  border: 1px solid var(--line);
}
.floating-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.4;
  margin: 0;
}

.check-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.check-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--ink-soft);
  font-size: 1rem;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 13 10 18 19 7'/></svg>");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- STEPS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.step {
  background: white;
  border-radius: var(--r-md);
  padding: 2rem 1.75rem;
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s ease;
  position: relative;
}
.step:hover {
  transform: translateY(-6px);
  border-color: var(--teal-soft);
  box-shadow: 0 30px 50px -20px rgba(15, 37, 48, 0.15);
}
.step__num {
  font-family: var(--f-editorial);
  font-size: 2.2rem;
  font-weight: 500;
  font-style: italic;
  color: var(--teal);
  display: block;
  margin-bottom: 1rem;
}
.step h3 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
  color: var(--ink);
}
.step p {
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ---------- CARDS ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  background: white;
  padding: 2.25rem 1.85rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--teal-soft);
  box-shadow: 0 30px 60px -25px rgba(15, 37, 48, 0.2);
}
.card:hover::before { transform: scaleX(1); }

.card__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(61, 139, 158, 0.12), rgba(184, 212, 220, 0.25));
  color: var(--teal);
  margin-bottom: 1.5rem;
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 0.6rem;
  color: var(--ink);
}
.card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---------- BODYMETRIX ---------- */
.bodymetrix-photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, 0.5),
    0 60px 120px -40px rgba(61, 139, 158, 0.4);
}
.bodymetrix-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bodymetrix-stat {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: white;
  color: var(--ink);
  padding: 1.5rem 1.75rem;
  border-radius: var(--r-md);
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.stat__big {
  font-family: var(--f-editorial);
  font-size: 2.6rem;
  font-weight: 500;
  font-style: italic;
  color: var(--teal);
  line-height: 1;
}
.stat__lbl {
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.feature-list li {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.feature-list li:hover {
  border-color: rgba(184, 212, 220, 0.3);
  background: rgba(255,255,255,0.07);
}
.feature-list strong {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  letter-spacing: -0.005em;
}
.feature-list span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  position: relative;
}
.testimonial::before {
  content: '“';
  position: absolute;
  top: -10px;
  left: 18px;
  font-family: var(--f-editorial);
  font-size: 5rem;
  font-style: italic;
  color: var(--teal);
  line-height: 1;
}
.testimonial p {
  font-family: var(--f-editorial);
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 1.25rem;
}
.testimonial cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ---------- SCHEDULE ---------- */
.schedule {
  max-width: 980px;
  margin: 0 auto;
}
.schedule__embed {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -25px rgba(15, 37, 48, 0.2);
  min-height: 600px;
  display: flex;
  align-items: stretch;
}
.schedule__embed iframe {
  width: 100%;
  min-height: 700px;
  border: 0;
}
.schedule__placeholder {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  gap: 1rem;
}
.schedule__placeholder h3 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.schedule__placeholder p {
  color: var(--ink-soft);
  max-width: 460px;
  margin-bottom: 1rem;
}

/* ---------- LOCALIZAÇÃO / MAPA ---------- */
.map-wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.map-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(15, 37, 48, 0.25);
  border: 1px solid var(--line);
  min-height: 460px;
  background: var(--sand);
}
.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  display: block;
  filter: saturate(0.85) contrast(1.02);
  transition: filter 0.5s ease;
}
.map-card:hover iframe { filter: saturate(1) contrast(1.04); }

.map-info {
  display: flex;
  flex-direction: column;
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -30px rgba(15, 37, 48, 0.18);
}
.map-info__title {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0.25rem 0 0.5rem;
}
.map-info__sub {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 1.75rem;
}

.map-info__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 1.5rem;
  margin-top: auto;
  margin-bottom: 1.75rem;
  border-top: 1px solid var(--line);
}
.map-info__list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.map-info__list svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
  flex-shrink: 0;
}

.map-info__cta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.map-info__cta .btn { width: 100%; }

/* ---------- CTA FINAL ---------- */
.cta-final {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: white;
  padding: clamp(5rem, 9vw, 8rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(61, 139, 158, 0.3), transparent 60%);
  pointer-events: none;
}
.cta-final .container { position: relative; z-index: 1; max-width: 760px; }
.cta-final h2 { margin-bottom: 1.25rem; }
.cta-final .lede--light { margin-bottom: 2.5rem; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: clamp(3.5rem, 6vw, 5rem) 0 2rem;
  font-size: 0.92rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-light);
}
.footer__brand img {
  height: 64px;
  width: auto;
  margin-bottom: 1.25rem;
}
.footer__brand p { max-width: 320px; line-height: 1.55; }

.footer__col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal-light);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-family: var(--f-brand);
}
.footer__col a, .footer__col span { transition: color 0.3s ease; }
.footer__col a:hover { color: white; }

.footer__bottom {
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer__crn {
  font-family: var(--f-brand);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ---------- WHATSAPP FAB ---------- */
.wa-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  background: var(--wa);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.55);
  z-index: 90;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.wa-fab svg { width: 30px; height: 30px; }
.wa-fab:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 18px 40px -8px rgba(37, 211, 102, 0.7);
}
.wa-fab::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--wa);
  opacity: 0;
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(0.95); opacity: 0.7; }
  100% { transform: scale(1.4);  opacity: 0; }
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .nav__menu { gap: 1.5rem; }
  .nav__menu a { font-size: 0.9rem; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; max-width: 700px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 840px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: block; }

  .hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero__visual { max-width: 480px; margin: 0 auto; width: 100%; }
  .hero__title { font-size: clamp(2.5rem, 9vw, 3.5rem); }
  .hero__trust { grid-template-columns: 1fr; gap: 1rem; }
  .hero__scroll { display: none; }

  .two-col,
  .two-col--reverse { grid-template-columns: 1fr; gap: 3rem; }
  .two-col--reverse .two-col__media { order: 0; }
  .two-col__media { max-width: 520px; margin: 0 auto; width: 100%; }

  .floating-card { right: 12px; bottom: -16px; max-width: 220px; padding: 1rem 1.2rem; }
  .bodymetrix-stat { left: 12px; bottom: -16px; padding: 1.1rem 1.3rem; }
  .stat__big { font-size: 2rem; }
  .hero__badge { width: 88px; height: 88px; bottom: -20px; left: -16px; }

  .map-wrap { grid-template-columns: 1fr; gap: 1.5rem; }
  .map-card, .map-card iframe { min-height: 360px; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .steps, .cards { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .wa-fab { width: 54px; height: 54px; bottom: 1rem; right: 1rem; }
  .wa-fab svg { width: 26px; height: 26px; }
  .btn { padding: 0 1.4rem; font-size: 0.9rem; }
  .hero__cta {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }
  .hero__cta .btn {
    width: 100%;
    flex: none;
    padding: 0 1.5rem;
  }
}
