
:root {
  --black: #070707;
  --black-soft: #0e0e0f;
  --graphite: #1b1b1d;
  --off-white: #f5f4f1;
  --muted: #aaa7a1;
  --orange: #ff6b00;
  --orange-light: #ff8a22;
  --line: rgba(255, 255, 255, 0.11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--off-white);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 40px));
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { width: 154px; height: 64px; overflow: hidden; display: grid; place-items: center; }
.site-image-fill { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; }
.brand img { width: 160px; height: auto; object-fit: contain; }
nav { display: flex; gap: 30px; color: #d6d3ce; font-size: 13px; font-weight: 700; }
nav a:hover { color: var(--orange); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { padding: 13px 18px; background: var(--orange); font-size: 11px; color: #111; }
.button-primary {
  min-height: 58px;
  padding: 0 24px;
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  color: #101010;
  box-shadow: 0 18px 50px rgba(255, 107, 0, .24);
  font-size: 13px;
}
.button-primary:hover { box-shadow: 0 22px 58px rgba(255, 107, 0, .35); }
.button-whatsapp {
  min-height: 54px;
  padding: 0 18px 0 10px;
  background: #1faa59;
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 12px 30px rgba(31,170,89,.26);
  font-size: 11px;
  white-space: nowrap;
}
.button-whatsapp:hover {
  background: #20bd62;
  box-shadow: 0 15px 36px rgba(31,170,89,.36);
}
.button-whatsapp img { width: 34px; height: 34px; display: block; object-fit: contain; filter: drop-shadow(0 2px 3px rgba(0,0,0,.26)); }

.hero {
  min-height: 760px;
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 46px;
  overflow: hidden;
  padding: 132px max(40px, calc((100vw - 1180px) / 2)) 72px;
  background:
    linear-gradient(90deg, rgba(7,7,7,.98) 0%, rgba(7,7,7,.9) 48%, rgba(7,7,7,.45) 100%),
    radial-gradient(circle at 70% 35%, #261006 0, transparent 40%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  background: linear-gradient(transparent, var(--black));
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255,107,0,.28);
  border-radius: 50%;
  right: 7%;
  top: 19%;
  box-shadow: 0 0 100px rgba(255,107,0,.12), inset 0 0 70px rgba(255,107,0,.08);
}
.hero-copy { z-index: 2; max-width: 660px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--orange); }
.hero h1 {
  margin: 20px 0 22px;
  max-width: 720px;
  font-size: clamp(46px, 5.2vw, 76px);
  line-height: .98;
  letter-spacing: -.055em;
  text-transform: uppercase;
  font-weight: 950;
}
.hero h1 strong { color: var(--orange); font-weight: 950; }
.hero-copy > p { max-width: 600px; color: #c2bfba; font-size: 17px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 34px; }
.text-link { color: #dedbd5; font-size: 13px; font-weight: 800; border-bottom: 1px solid #65625e; padding: 10px 0; }
.text-link:hover { color: var(--orange); border-color: var(--orange); }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: 30px; color: #aaa6a0; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.trust-row span { display: flex; align-items: center; gap: 8px; }
.trust-row span::before { content: "✓"; color: var(--orange); font-weight: 900; }

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 620px;
  align-self: end;
  border-radius: 22px 22px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
}
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,7,7,.3), transparent 45%), linear-gradient(0deg, var(--black), transparent 37%); }
.hero-visual img { object-fit: cover; object-position: center center; }
.visual-badge {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 16px;
  border: 1px solid rgba(255,107,0,.5);
  border-radius: 10px;
  background: rgba(8,8,8,.82);
  backdrop-filter: blur(12px);
}
.visual-badge span { color: var(--orange); font-size: 30px; line-height: 1; font-weight: 950; }
.visual-badge small { max-width: 90px; font-size: 10px; line-height: 1.35; font-weight: 800; text-transform: uppercase; }

.proof-strip {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 40px));
  margin: -42px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #111112;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.proof-strip div { padding: 24px; display: flex; align-items: center; gap: 13px; border-right: 1px solid var(--line); }
.proof-strip div:last-child { border-right: 0; }
.proof-strip strong { color: var(--orange); font-size: 17px; }
.proof-strip span { color: #d2cfca; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }

.welcome-video {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 34px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid rgba(255,107,0,.38);
  border-radius: 22px;
  background: radial-gradient(circle at 100% 0, rgba(255,107,0,.14), transparent 34%), #111112;
  box-shadow: 0 22px 70px rgba(0,0,0,.3);
}
.welcome-video::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--orange), var(--orange-light), transparent 80%); }
.welcome-video-copy { display: flex; flex-direction: column; justify-content: center; padding: 14px 0 14px 8px; }
.welcome-video-copy h2 { max-width: 520px; margin: 16px 0 16px; font-size: clamp(36px, 4vw, 58px); line-height: .98; letter-spacing: -.045em; text-transform: uppercase; }
.welcome-video-lead { max-width: 510px; margin: 0; color: #bdb9b2; font-size: 15px; line-height: 1.75; }
.welcome-video-points { display: grid; gap: 10px; margin: 25px 0 30px; }
.welcome-video-points span { display: flex; align-items: center; gap: 10px; color: #e2dfd9; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.welcome-video-points span::before { content: "✓"; color: var(--orange); font-size: 14px; font-weight: 950; }
.welcome-video-copy .button { align-self: flex-start; }
.welcome-video-player { min-width: 0; }
.video-player-top { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin: 0 0 12px; color: var(--orange); font-size: 10px; font-weight: 950; letter-spacing: .15em; text-transform: uppercase; }
.video-player-top small { color: #8f8b85; font-size: 9px; letter-spacing: .1em; }
.video-frame { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 15px; background: #050505; box-shadow: 0 18px 45px rgba(0,0,0,.5); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-fallback { margin: 10px 0 0; color: #77746f; font-size: 10px; text-align: right; }
.video-fallback a { color: var(--orange); font-weight: 800; }

.section { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 130px 0; }
.section-heading { max-width: 900px; }
.section-kicker { color: var(--orange); font-size: 11px; line-height: 1.3; font-weight: 950; letter-spacing: .16em; text-transform: uppercase; }
.section h2, .method-section h2, .audience-section h2, .offer-section h2, .closing-section h2 {
  margin: 14px 0 0;
  font-size: clamp(38px, 4.5vw, 66px);
  line-height: 1.02;
  letter-spacing: -.045em;
  text-transform: uppercase;
  font-weight: 950;
}

.problem-section { padding-top: 150px; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.problem-grid article {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, #121213, #0b0b0c);
  transition: border-color .2s ease, transform .2s ease;
}
.problem-grid article:hover { transform: translateY(-4px); border-color: rgba(255,107,0,.48); }
.problem-grid article > span { color: var(--orange); font-size: 12px; font-weight: 900; }
.problem-grid h3, .delivery-grid h3 { margin: 55px 0 10px; font-size: 21px; text-transform: uppercase; }
.problem-grid p, .delivery-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.bridge-copy { max-width: 820px; margin: 50px auto 0; color: #b8b5af; font-size: 20px; line-height: 1.6; text-align: center; }
.bridge-copy strong { color: var(--off-white); }

.method-section {
  padding: 125px max(40px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(255,107,0,.07), transparent 45%),
    #111112;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.method-intro { max-width: 820px; }
.method-intro > p { max-width: 720px; margin: 22px 0 0; color: #aaa7a1; font-size: 17px; line-height: 1.75; }
.journey-visual { position: relative; min-height: 520px; margin-top: 55px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #080808; }
.journey-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,7,7,.94) 0, transparent 45%), linear-gradient(90deg, rgba(7,7,7,.35), transparent 30%, transparent 70%, rgba(7,7,7,.2)); }
.journey-visual img { object-fit: cover; object-position: center; }
.journey-caption { position: absolute; z-index: 2; left: 30px; bottom: 28px; display: flex; flex-direction: column; gap: 7px; }
.journey-caption span { color: var(--orange); font-size: 10px; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.journey-caption strong { font-size: 22px; text-transform: uppercase; }
.phases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 22px; }
.phase-card { position: relative; min-height: 340px; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: rgba(7,7,7,.72); }
.phase-card::after { content: ""; position: absolute; width: 160px; height: 160px; right: -70px; bottom: -70px; border: 1px solid rgba(255,107,0,.2); border-radius: 50%; }
.phase-top { display: flex; align-items: center; justify-content: space-between; }
.phase-number { color: rgba(255,107,0,.35); font-size: 72px; line-height: 1; font-weight: 950; letter-spacing: -.08em; }
.phase-top small { color: #8c8984; font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.phase-card h3 { margin: 70px 0 12px; color: var(--orange); font-size: 28px; text-transform: uppercase; }
.phase-card p { max-width: 290px; margin: 0; color: #b0ada7; font-size: 14px; line-height: 1.7; }
.journey-cta {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  border: 1px solid rgba(31,170,89,.34);
  border-radius: 14px;
  background: linear-gradient(100deg, rgba(31,170,89,.12), rgba(31,170,89,.03));
}
.journey-cta > div { display: flex; flex-direction: column; gap: 7px; }
.journey-cta span { color: #aaa7a1; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.journey-cta strong { font-size: 18px; text-transform: uppercase; }

.compact-heading { max-width: 860px; }
.technology-showcase { min-height: 490px; margin-top: 58px; display: grid; grid-template-columns: .82fr 1.18fr; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #111112; }
.technology-message { z-index: 2; padding: 50px 42px; display: flex; flex-direction: column; justify-content: center; }
.technology-message > span { color: var(--orange); font-size: 10px; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.technology-message h3 { margin: 18px 0 16px; font-size: 30px; line-height: 1.08; text-transform: uppercase; }
.technology-message p { margin: 0; color: #aaa7a1; font-size: 14px; line-height: 1.7; }
.technology-image { position: relative; min-height: 490px; }
.technology-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #111112 0, transparent 35%); }
.technology-image img { object-fit: cover; object-position: center; }
.delivery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; margin-top: 60px; border-top: 1px solid var(--line); }
.delivery-grid article { display: grid; grid-template-columns: 46px 1fr; gap: 18px; min-height: 160px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.delivery-grid article > span { color: var(--orange); font-size: 11px; font-weight: 900; padding-top: 5px; }
.delivery-grid h3 { margin: 0 0 9px; font-size: 18px; }

.impact-section {
  scroll-margin-top: 24px;
  position: relative;
  padding: 120px max(40px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(90deg, var(--orange), #ffb347) top / 100% 4px no-repeat,
    radial-gradient(circle at 78% 15%, rgba(255,107,0,.1), transparent 28%),
    #101011;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.impact-section::before {
  content: "VISÃO DOS 90 DIAS";
  position: absolute;
  top: 24px;
  left: max(40px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, .3);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .22em;
}
.impact-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: end; }
.impact-heading h2 { margin: 14px 0 0; max-width: 790px; font-size: clamp(38px, 4.5vw, 66px); line-height: 1.02; letter-spacing: -.045em; text-transform: uppercase; font-weight: 950; }
.impact-heading > p { margin: 0 0 5px; color: #aaa7a1; font-size: 14px; line-height: 1.75; }
.impact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 58px; }
.impact-card { min-height: 435px; padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(145deg, rgba(27,27,29,.92), rgba(9,9,10,.96)); }
.impact-card-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.impact-card-top > span { color: var(--orange); font-size: 11px; font-weight: 950; letter-spacing: .13em; text-transform: uppercase; }
.impact-card-top > small { color: #77746f; font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.impact-curve { margin: 27px 0 25px; }
.impact-curve svg { display: block; width: 100%; height: 150px; overflow: visible; }
.chart-axis { stroke: rgba(255,255,255,.2); stroke-width: .8; }
.chart-grid { stroke: rgba(255,255,255,.07); stroke-width: .65; stroke-dasharray: 2.5 2.5; }
.chart-line { fill: none; stroke: var(--orange); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 5px rgba(255,107,0,.4)); }
.chart-point { fill: #111112; stroke: var(--orange-light); stroke-width: 1.2; }
.impact-axis-labels { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: -2px; color: #686560; font-size: 9px; font-weight: 800; letter-spacing: .06em; text-align: center; text-transform: uppercase; }
.impact-axis-labels span:first-child { text-align: left; }
.impact-axis-labels span:last-child { text-align: right; }
.impact-card h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.12; text-transform: uppercase; }
.impact-card > p { margin: 0; color: #aaa7a1; font-size: 13px; line-height: 1.7; }
.women-health-note { margin-top: 20px; padding: 38px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; border: 1px solid rgba(255,107,0,.38); border-radius: 18px; background: linear-gradient(120deg, rgba(255,107,0,.11), rgba(255,107,0,.015)); }
.women-health-note span { color: var(--orange); font-size: 10px; font-weight: 950; letter-spacing: .13em; text-transform: uppercase; }
.women-health-note h3 { margin: 12px 0 0; font-size: 25px; line-height: 1.15; text-transform: uppercase; }
.women-health-note p { margin: 0; color: #b6b3ad; font-size: 14px; line-height: 1.75; }
.evidence-links { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 10px 18px; color: #77746f; font-size: 10px; line-height: 1.5; }
.evidence-links > span { color: #aaa7a1; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.evidence-links a { border-bottom: 1px solid #4f4c48; }
.evidence-links a:hover { color: var(--orange); border-color: var(--orange); }

.audience-section { width: min(1180px, calc(100% - 40px)); margin: 0 auto 120px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 52px; align-items: stretch; }
.audience-copy { padding: 65px 0; }
.audience-copy ul, .offer-card ul { list-style: none; padding: 0; margin: 38px 0 0; }
.audience-copy li, .offer-card li { position: relative; padding: 14px 0 14px 30px; color: #c5c2bc; border-bottom: 1px solid var(--line); font-size: 15px; line-height: 1.5; }
.audience-copy li::before, .offer-card li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 950; }
.audience-side { display: grid; grid-template-rows: minmax(390px, 1fr) auto; gap: 16px; }
.audience-visual { position: relative; min-height: 390px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; }
.audience-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,7,7,.86), transparent 48%); }
.audience-visual img { object-fit: cover; object-position: 38% center; }
.audience-visual > span { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 22px; color: #f0ede8; font-size: 14px; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.audience-contrast { padding: 34px; border: 1px solid rgba(255,107,0,.4); border-radius: 18px; background: linear-gradient(160deg, rgba(255,107,0,.12), rgba(255,107,0,.02)); }
.audience-contrast > span { color: var(--orange); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.audience-contrast h3 { margin: 28px 0 14px; font-size: 26px; line-height: 1.15; text-transform: uppercase; }
.audience-contrast p { margin: 0; color: #aaa7a1; font-size: 14px; line-height: 1.75; }

.offer-section { width: min(1180px, calc(100% - 40px)); min-height: 720px; margin: 0 auto 120px; display: grid; grid-template-columns: .88fr 1.12fr; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #111112; }
.offer-image { min-height: 100%; position: relative; overflow: hidden; }
.offer-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 48%, #111112 100%), linear-gradient(0deg, rgba(7,7,7,.4), transparent); }
.offer-image img { object-fit: cover; object-position: 57% center; }
.offer-card { padding: 65px 64px; display: flex; flex-direction: column; justify-content: center; }
.offer-lead { margin: 20px 0 0; color: #b9b6b0; font-size: 17px; line-height: 1.7; }
.offer-card ul { margin-top: 24px; }
.offer-card li { padding-top: 10px; padding-bottom: 10px; }
.offer-button { width: 100%; margin-top: 30px; }
.offer-card > small { margin-top: 14px; color: #817e79; font-size: 10px; text-align: center; line-height: 1.5; }

.faq-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; padding-top: 30px; }
.faq-title h2 { margin-bottom: 0; }
.final-whatsapp-button { margin-top: 22px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { position: relative; cursor: pointer; list-style: none; padding: 26px 42px 26px 0; font-size: 16px; font-weight: 800; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 4px; color: var(--orange); font-size: 24px; font-weight: 400; }
details[open] summary::after { content: "–"; }
details p { margin: -4px 42px 26px 0; color: #aaa7a1; font-size: 14px; line-height: 1.7; }

.closing-section { position: relative; min-height: 680px; padding: 110px max(40px, calc((100vw - 1180px) / 2)); display: flex; align-items: center; overflow: hidden; background: #090909; border-top: 1px solid var(--line); }
.closing-section::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,7,7,.97) 0, rgba(7,7,7,.76) 42%, rgba(7,7,7,.1) 76%), linear-gradient(0deg, rgba(7,7,7,.42), transparent 55%); }
.closing-image { object-fit: cover; object-position: center; }
.closing-content { position: relative; z-index: 2; max-width: 690px; text-align: left; }
.closing-content > span { color: #d0cdc7; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.closing-section h2 { margin: 18px 0 36px; color: var(--orange); }

footer { width: min(1180px, calc(100% - 40px)); min-height: 190px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; border-top: 1px solid var(--line); }
.footer-brand img { width: 150px; height: auto; }
.footer-brand p { margin: 0; color: #77746f; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.footer-links { display: flex; gap: 22px; color: #aaa7a1; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.footer-links a:hover { color: var(--orange); }
footer > small { grid-column: 1 / -1; padding-bottom: 25px; color: #5c5955; font-size: 10px; }
.mobile-cta { display: none; }
.whatsapp-float {
  position: fixed;
  z-index: 35;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 58px;
  padding: 8px 17px 8px 9px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: #1faa59;
  color: #fff;
  box-shadow: 0 15px 38px rgba(0,0,0,.45), 0 0 0 5px rgba(31,170,89,.14);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); background: #20bd62; box-shadow: 0 18px 44px rgba(0,0,0,.52), 0 0 0 7px rgba(31,170,89,.18); }
.whatsapp-mark { width: 42px; height: 42px; display: grid; place-items: center; }
.whatsapp-mark img { width: 42px; height: 42px; display: block; object-fit: contain; filter: drop-shadow(0 2px 3px rgba(0,0,0,.28)); }
.whatsapp-copy { display: flex; flex-direction: column; gap: 3px; }
.whatsapp-copy strong { font-size: 11px; line-height: 1; letter-spacing: .05em; text-transform: uppercase; }
.whatsapp-copy small { color: rgba(255,255,255,.82); font-size: 10px; line-height: 1; }

@keyframes mobile-cta-pulse {
  0%, 100% { box-shadow: 0 15px 40px rgba(0,0,0,.55), 0 0 0 0 rgba(255,107,0,0); }
  50% { box-shadow: 0 16px 42px rgba(0,0,0,.58), 0 0 0 6px rgba(255,107,0,.16), 0 0 28px rgba(255,107,0,.42); }
}

@media (max-width: 900px) {
  .site-header { height: 78px; }
  nav { display: none; }
  .brand { width: 125px; }
  .brand img { width: 134px; }
  .hero { grid-template-columns: 1fr; padding-top: 118px; min-height: auto; }
  .hero-copy { max-width: 720px; }
  .hero-visual { min-height: 470px; width: 100%; }
  .proof-strip { grid-template-columns: 1fr 1fr; margin-top: 24px; }
  .proof-strip div:nth-child(2) { border-right: 0; }
  .proof-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .welcome-video { grid-template-columns: 1fr; gap: 20px; padding: 22px; margin-top: 38px; }
  .welcome-video-copy { padding: 8px 0 0; }
  .welcome-video-copy h2 { font-size: 42px; }
  .welcome-video-copy .button { align-self: stretch; }
  .video-fallback { text-align: left; }
  .problem-grid, .phases { grid-template-columns: 1fr; }
  .journey-cta { align-items: flex-start; flex-direction: column; }
  .journey-cta .button { align-self: stretch; }
  .problem-grid article { min-height: 210px; }
  .problem-grid h3 { margin-top: 38px; }
  .phase-card { min-height: 290px; }
  .phase-card h3 { margin-top: 38px; }
  .journey-visual { min-height: 420px; }
  .technology-showcase { grid-template-columns: 1fr; }
  .technology-image { min-height: 430px; grid-row: 1; }
  .technology-image::after { background: linear-gradient(0deg, #111112 0, transparent 42%); }
  .technology-message { grid-row: 2; }
  .impact-heading { grid-template-columns: 1fr; gap: 25px; }
  .impact-grid { grid-template-columns: 1fr; }
  .women-health-note { grid-template-columns: 1fr; gap: 24px; }
  .audience-section { grid-template-columns: 1fr; gap: 10px; }
  .offer-section { grid-template-columns: 1fr; }
  .offer-image { min-height: 470px; }
  .offer-image::after { background: linear-gradient(0deg, #111112 0, transparent 40%); }
  .faq-section { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 560px) {
  .site-header { width: calc(100% - 24px); }
  .button-small { padding: 11px 13px; font-size: 9px; }
  .hero { padding: 105px 18px 46px; gap: 30px; }
  .hero h1 { font-size: clamp(38px, 13vw, 54px); }
  .hero-copy > p { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 10px; }
  .button-primary { text-align: center; width: 100%; }
  .button-whatsapp { width: 100%; justify-content: center; }
  .hero-visual { min-height: 400px; }
  .proof-strip { width: calc(100% - 24px); grid-template-columns: 1fr; }
  .proof-strip div, .proof-strip div:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-strip div:last-child { border-bottom: 0; }
  .section { width: calc(100% - 36px); padding: 92px 0; }
  .section h2, .method-section h2, .audience-section h2, .offer-section h2, .closing-section h2 { font-size: 36px; }
  .problem-section { padding-top: 110px; }
  .problem-grid { margin-top: 34px; }
  .bridge-copy { margin-top: 35px; font-size: 17px; text-align: left; }
  .method-section { padding: 90px 18px; }
  .method-intro > p { font-size: 15px; }
  .journey-visual { min-height: 300px; margin-top: 34px; }
  .journey-caption { left: 18px; bottom: 17px; }
  .journey-caption strong { font-size: 16px; }
  .phases { margin-top: 38px; }
  .journey-cta { padding: 20px; }
  .journey-cta strong { font-size: 16px; }
  .technology-showcase { min-height: 0; margin-top: 38px; }
  .technology-image { min-height: 310px; }
  .technology-message { padding: 34px 24px; }
  .technology-message h3 { font-size: 25px; }
  .delivery-grid { grid-template-columns: 1fr; margin-top: 38px; }
  .impact-section { padding: 88px 18px; }
  .impact-section::before { left: 18px; top: 22px; }
  .impact-heading h2 { font-size: 36px; }
  .impact-grid { margin-top: 38px; }
  .impact-card { min-height: 410px; padding: 24px; }
  .impact-card-top { align-items: flex-start; flex-direction: column; gap: 7px; }
  .impact-curve svg { height: 135px; }
  .women-health-note { padding: 28px 24px; }
  .women-health-note h3 { font-size: 22px; }
  .evidence-links { flex-direction: column; align-items: flex-start; }
  .audience-section { width: calc(100% - 36px); margin-bottom: 90px; }
  .audience-copy { padding: 0 0 40px; }
  .audience-contrast { padding: 32px 26px; }
  .audience-visual { min-height: 330px; }
  .audience-contrast h3 { margin-top: 26px; }
  .offer-section { width: calc(100% - 24px); margin-bottom: 90px; }
  .offer-image { min-height: 390px; }
  .offer-card { padding: 42px 24px; }
  .faq-section { padding-top: 0; }
  .final-whatsapp-button { width: 100%; justify-content: center; }
  .closing-section { min-height: 660px; padding: 100px 18px 130px; align-items: flex-end; }
  .closing-section::after { background: linear-gradient(0deg, rgba(7,7,7,.98) 0, rgba(7,7,7,.74) 55%, rgba(7,7,7,.12) 100%); }
  .closing-image { object-position: 68% center; }
  footer { width: calc(100% - 36px); grid-template-columns: 1fr; padding: 45px 0 95px; }
  .footer-links { flex-wrap: wrap; }
  footer > small { padding-bottom: 0; }
  .mobile-cta {
    position: fixed;
    z-index: 30;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-height: 54px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--orange-light), var(--orange));
    color: #0b0b0b;
    box-shadow: 0 15px 40px rgba(0,0,0,.55);
    animation: mobile-cta-pulse 2.2s ease-in-out infinite;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .04em;
  }
  .whatsapp-float { right: 14px; bottom: 78px; width: 56px; height: 56px; min-height: 56px; padding: 0; justify-content: center; border-width: 2px; }
  .whatsapp-mark, .whatsapp-mark img { width: 48px; height: 48px; }
  .whatsapp-copy { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-cta { animation: none; }
}
