/* ════════════════════════════════════════════
   THE WOMAN GYM — LP Styles (fiel ao Figma)
   Marcellus (títulos) · Sora (corpo)
   Wine #612C51 · Dark #370628 · Pink #FFC0EC
   ════════════════════════════════════════════ */

/* ── VARIÁVEIS ── */
:root {
  --wine:       #612C51;
  --dark:       #370628;
  --pink:       #FFC0EC;
  --pink-bg:    #FEF0FA;    /* fundo seção protocolo */
  --cream:      #FFF8FC;
  --gray:       #666666;
  --gray-light: #999999;
  --border:     #d9d9d9;
  --white:      #ffffff;

  --f-display: 'Marcellus', Georgia, serif;
  --f-body:    'Sora', sans-serif;

  --max-w: 1240px;
  --pad-x: clamp(20px, 5vw, 80px);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body { font-family: var(--f-body); background: var(--white); color: var(--gray); overflow-x: hidden; }
img  { display: block; max-width: 100%; height: auto; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── LAYOUT ── */
.container        { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.container-narrow { max-width: 860px;        margin: 0 auto; padding: 0 var(--pad-x); }

/* ── ANIMAÇÕES ── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:none; } }
@keyframes fadeLeft { from { opacity:0; transform:translateX(-36px);} to { opacity:1; transform:none; } }
@keyframes fadeRight{ from { opacity:0; transform:translateX(36px); } to { opacity:1; transform:none; } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes scaleUp  { from { opacity:0; transform:scale(0.94); } to { opacity:1; transform:none; } }
@keyframes pulse    { 0%,100%{box-shadow:0 0 0 0 rgba(255,192,236,.5)} 50%{box-shadow:0 0 0 10px rgba(255,192,236,0)} }

/* Classes de animação de entrada (hero – dispara imediatamente) */
.anim-fade { animation: fadeIn   .7s ease both; }
.anim-up   { animation: fadeUp   .7s ease both; }
.d1 { animation-delay:.10s; } .d2 { animation-delay:.20s; } .d3 { animation-delay:.30s; }
.d4 { animation-delay:.45s; } .d5 { animation-delay:.55s; } .d6 { animation-delay:.65s; }
.d7 { animation-delay:.80s; }

/* Classes de reveal via IntersectionObserver */
.reveal-up, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: opacity .65s ease, transform .65s cubic-bezier(.4,0,.2,1);
}
.reveal-up    { transform: translateY(36px); }
.reveal-left  { transform: translateX(-44px); }
.reveal-right { transform: translateX(44px);  }
.reveal-scale { transform: scale(.94);        }
.revealed     { opacity:1 !important; transform:none !important; }

.d1.revealed { transition-delay:.10s; } .d2.revealed { transition-delay:.18s; }
.d3.revealed { transition-delay:.26s; } .d4.revealed { transition-delay:.34s; }
.d5.revealed { transition-delay:.42s; } .d6.revealed { transition-delay:.50s; }

/* ── BOTÕES ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--wine); color: var(--white);
  font-family: var(--f-body); font-size: 15px; font-weight: 500;
  padding: 14px 26px; border-radius: 8px;
  box-shadow: 0 6px 24px rgba(97,44,81,.3);
  transition: background .25s, transform .25s, box-shadow .25s;
  cursor: pointer;
}
.btn-primary:hover {
  background: #7a3764;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(97,44,81,.4);
}
.btn-full { width: 100%; justify-content: center; }

/* ════════════════════════════════════════════
   1. HERO
   ════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* fundo foto */
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__photo {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 50%;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top right,
    rgba(55,6,40,.95) 0%,
    rgba(55,6,40,.78) 32%,
    rgba(55,6,40,.22) 56%,
    rgba(55,6,40,.00) 70%
  );
}

/* inner */
.hero__inner {
  position: relative; z-index: 1;
  width: 100%;
  padding: clamp(48px,5vh,72px) var(--pad-x) clamp(40px,5vh,64px) 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100svh;
  box-sizing: border-box;
}

/* logo */
.hero__logo { margin-bottom: 48px; }
.hero__logo img,
.hero__logo svg {
  width: clamp(160px,18vw,240px);
  height: auto;
  display: block;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* headline */
.hero__headline {
  font-family: var(--f-display);
  font-size: clamp(20px,2.4vw,32px);
  line-height: 1.15;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 16px;
  max-width: 520px;
}
.hero__headline .pink { color: var(--pink); }

/* divider */
.hero__divider {
  width: clamp(200px,32vw,400px);
  height: 1px;
  background: rgba(255,255,255,.2);
  margin-bottom: 14px;
}

/* content column — anchored left, pushed to bottom half */
.hero__content {
  max-width: 52%;
  margin-top: auto;
}

/* protocolo label */
.hero__protocol-label {
  font-family: var(--f-body);
  font-weight: 700; font-size: clamp(13px,1.4vw,16px);
  color: var(--pink);
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 14px;
}

/* checklist */
.hero__checks { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.hero__checks li {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.9);
  font-size: clamp(14px,1.4vw,17px);
}
.check-circle { color: var(--pink); display: inline-flex; align-items: center; flex-shrink: 0; }

/* ctas */
.hero__ctas { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

.btn-video {
  display: inline-flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,.9);
  font-family: var(--f-body); font-size: 15px;
  background: none; border: none; cursor: pointer;
  transition: color .2s;
}
.btn-video:hover { color: var(--pink); }
.play-circle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(255,192,236,.5);
  color: var(--pink);
  transition: border-color .2s, background .2s;
  animation: pulse 2.4s ease-in-out infinite;
}
.btn-video:hover .play-circle { border-color: var(--pink); background: rgba(255,192,236,.08); }

/* ════════════════════════════════════════════
   2. VÍDEO
   ════════════════════════════════════════════ */
.sec-video {
  background: var(--pink-bg);
  padding: clamp(48px,6vw,80px) 0 clamp(48px,6vw,80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Watermark W */
.sec-video__watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}
.sec-video__watermark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sec-video__header { margin-bottom: clamp(28px,4vw,48px); position: relative; }

.sec-video__title {
  font-family: var(--f-display);
  font-size: clamp(30px,4.5vw,52px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.title-gray     { color: #666; display: block; }
.title-gradient {
  display: block;
  background: linear-gradient(90deg, var(--wine) 0%, #b56098 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-style: italic;
}

.sec-video__sub {
  max-width: 580px; margin: 0 auto;
  font-size: clamp(14px,1.4vw,17px); line-height: 1.75; color: var(--gray);
}

/* vídeo */
.video-wrap {
  position: relative;
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 20px 80px rgba(55,6,40,.14);
  margin-bottom: clamp(28px,4vw,48px);
  aspect-ratio: 16/9;
  background: #f0e8ed;
}
.video-wrap iframe { position:absolute; inset:0; width:100%; height:100%; border:none; }

.video-thumb { position:absolute; inset:0; cursor:pointer; }
.video-thumb__inner {
  position:absolute; inset:0;
  background: linear-gradient(135deg, #f5e0f0 0%, #efe0ea 100%);
  display:flex; align-items:center; justify-content:center;
}
.video-play-overlay {
  display:flex; align-items:center; justify-content:center;
  width:100%; height:100%;
}
.video-play-icon {
  display:flex; align-items:center; justify-content:center;
  width:90px; height:90px;
  border-radius:50%;
  background: rgba(255,255,255,.85);
  transition: transform .3s, background .3s;
}
.video-thumb:hover .video-play-icon { transform: scale(1.1); background: #fff; }

.sec-video__cta { display:flex; justify-content:center; position:relative; }

/* ════════════════════════════════════════════
   3. SOBRE NÓS
   ════════════════════════════════════════════ */
.sec-sobre {
  background: var(--white);
  padding: clamp(72px,10vw,120px) 0;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,96px);
  align-items: center;
}

/* foto */
.sobre-grid__img img {
  width: 100%;
  height: clamp(480px,58vw,720px);
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 24px 72px rgba(55,6,40,.12);
}

/* conteúdo */
.sobre-title {
  font-family: var(--f-display);
  font-size: clamp(26px,3.2vw,42px);
  line-height: 1.20;
  color: #444;
  margin-bottom: 24px;
}
.sobre-title--wine { color: var(--wine); }

.sobre-body { margin-bottom: 36px; display:flex; flex-direction:column; gap:14px; }
.sobre-body p { font-size: clamp(13px,1.2vw,15px); line-height: 1.8; color: var(--gray); }

.sobre-features { display:flex; flex-direction:column; gap:28px; }

.sobre-feature { display:flex; gap:16px; align-items:flex-start; }
.sobre-feature__icon { flex-shrink:0; }
.sobre-feature__icon img { width:56px; height:56px; object-fit:contain; }

.sobre-feature__title {
  font-family: var(--f-display);
  font-size: clamp(15px,1.4vw,19px);
  color: #333;
  margin-bottom: 8px;
}
.sobre-feature__text {
  font-size: clamp(13px,1.1vw,14.5px);
  line-height: 1.75; color: var(--gray);
}

/* ════════════════════════════════════════════
   4. PROTOCOLO
   ════════════════════════════════════════════ */
.sec-protocolo {
  background: var(--pink-bg);
  padding: clamp(64px,9vw,110px) 0;
}

.protocolo-title {
  font-family: var(--f-display);
  font-size: clamp(24px,3vw,40px);
  line-height: 1.22;
  color: var(--dark);
  margin-bottom: clamp(32px,4vw,56px);
}

/* 2×2 grid de cards */
.protocolo-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: clamp(32px,4vw,52px);
}

.proto-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(24px,2.8vw,36px);
  transition: transform .3s, box-shadow .3s;
}
.proto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(97,44,81,.1);
}

.proto-card__ico {
  margin-bottom: 18px;
  height: 88px;
  display: flex;
  align-items: center;
}
.proto-card__ico img,
.proto-card__ico svg {
  width: 84px;
  height: 84px;
  object-fit: contain;
}
.proto-card__ico img[src*="whatsapp"] {
  width: 60px;
  height: 60px;
  filter: invert(20%) sepia(60%) saturate(500%) hue-rotate(280deg) brightness(60%);
}

.proto-card__title {
  font-family: var(--f-display);
  font-size: clamp(16px,1.6vw,20px);
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.proto-card__desc { font-size: clamp(12px,1.1vw,14px); line-height: 1.75; color: var(--gray); }

/* card de grupo centralizado */
.grupo-card {
  max-width: 500px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(55,6,40,.14);
}
.grupo-card__img img {
  width: 100%;
  height: clamp(220px,28vw,340px);
  object-fit: cover;
  display: block;
}
.grupo-card__info {
  background: var(--wine);
  padding: clamp(20px,2.5vw,28px) clamp(20px,2.5vw,28px);
}
.grupo-card__title {
  font-family: var(--f-display);
  font-size: clamp(17px,1.8vw,22px);
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.25;
}
.grupo-card__desc {
  font-size: clamp(12px,1.1vw,14px);
  color: rgba(255,255,255,.8);
  line-height: 1.7;
}

/* ════════════════════════════════════════════
   5. PARA QUEM
   ════════════════════════════════════════════ */
.sec-paraquem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(520px,60vw,720px);
}

/* coluna foto */
.paraquem__foto {
  position: relative; overflow: hidden;
}
.paraquem__foto img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  display: block;
}

/* coluna painel */
.paraquem__painel {
  background: var(--wine);
  padding: clamp(48px,6vw,80px) clamp(32px,4vw,64px);
  display: flex; flex-direction: column;
  justify-content: center; gap: 40px;
}

.paraquem__titulo {
  font-family: var(--f-display);
  font-size: clamp(22px,2.6vw,34px);
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 20px;
}
.paraquem__titulo--sm { font-size: clamp(18px,2vw,26px); }

.paraquem__lista { display:flex; flex-direction:column; gap:16px; }
.paraquem__lista li {
  display:flex; align-items:flex-start; gap:12px;
  font-size: clamp(13px,1.3vw,15px);
  line-height: 1.55;
}

.paraquem__lista--for li { color: rgba(255,255,255,.95); }
.paraquem__lista--for strong { color: var(--pink); font-weight:600; }

.paraquem__lista--contra li { color: rgba(255,255,255,.7); }
.paraquem__lista--contra strong { color: rgba(255,255,255,.9); font-weight:600; }

.ico-check { color: var(--pink); flex-shrink:0; margin-top:2px; }
.ico-alert { color: rgba(255,255,255,.5); flex-shrink:0; margin-top:2px; }

/* ════════════════════════════════════════════
   6. INVESTIMENTO / PREÇO
   ════════════════════════════════════════════ */
.sec-preco {
  background: var(--white);
  padding: clamp(64px,9vw,110px) 0;
  position: relative;
  overflow: hidden;
}
/* Círculo decorativo à esquerda */
.sec-preco__circle {
  position: absolute;
  top: 50%; left: -160px;
  transform: translateY(-50%);
  width: clamp(400px, 45vw, 600px);
  height: clamp(400px, 45vw, 600px);
  border-radius: 50%;
  border: 1px solid rgba(97,44,81,.1);
  pointer-events: none;
  user-select: none;
}
.sec-preco__circle::after {
  content: '';
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1px solid rgba(97,44,81,.07);
}

/* W da logo à direita */
.sec-preco__watermark {
  position: absolute;
  top: 0; right: -40px;
  width: 52%;
  height: 100%;
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
}
.sec-preco__watermark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.preco__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}

/* texto esquerda */
.preco__texto {}

.preco__heading {
  font-family: var(--f-display);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 16px;
}

.preco__sub {
  font-size: clamp(13px,1.3vw,16px);
  color: var(--gray); line-height:1.75;
}

/* card de preço */
.preco__card {
  background: var(--wine);
  border-radius: 40px;
  overflow: hidden;
  color: var(--white);
  box-shadow: 0 20px 64px rgba(55,6,40,.22);
}

/* foto no topo do card */
.preco__foto {
  position: relative;
}
.preco__foto img {
  width:100%; height:clamp(190px,18vw,230px);
  object-fit:cover; object-position: center 35%;
  display:block;
}

/* corpo do card */
.preco__card-body {
  padding: clamp(28px,3vw,40px) clamp(24px,3vw,36px) clamp(24px,3vw,36px);
  text-align: center;
}

.preco__plan-label {
  display: block;
  text-align: center;
  font-family: var(--f-body); font-weight:700;
  font-size:11px; letter-spacing:.12em; text-transform:uppercase;
  background: var(--white);
  color: var(--dark);
  padding: 7px 20px; border-radius: 24px;
  width: fit-content;
  position: absolute;
  bottom: 0; left: 50%;
  transform: translate(-50%, 50%);
  z-index: 2;
  white-space: nowrap;
}
.preco__de {
  font-size:15px; color: rgba(255,255,255,.45); margin-bottom:8px;
}
.preco__de s { text-decoration-color: rgba(255,255,255,.25); }

.preco__por {
  font-size:13px; letter-spacing:.18em; text-transform:uppercase;
  color: rgba(255,255,255,.5); margin-bottom:10px;
}

.preco__valor {
  display:flex; align-items:center; justify-content:center; gap:6px;
  margin-bottom:14px; line-height:1;
}
.preco__parcelas {
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  line-height:1.2; gap:2px;
}
.preco__parcelas-num { font-family:var(--f-body); font-size:14px; font-weight:700; color:var(--white); letter-spacing:.08em; }
.preco__parcelas-de  { font-family:var(--f-body); font-size:11px; font-weight:600; color:rgba(255,255,255,.6); letter-spacing:.12em; }
.preco__cifra   { font-family:var(--f-display); font-size:22px; color:var(--pink); }
.preco__numero  { font-family:var(--f-display); font-size:clamp(52px,6vw,72px); color:var(--white); letter-spacing:-.02em; }
.preco__centavos{ font-family:var(--f-display); font-size:26px; color:rgba(255,255,255,.6); }

.preco__nota {
  font-size:14px; font-style:italic;
  color:rgba(255,255,255,.5); margin-bottom:10px;
}
.preco__ate {
  font-size:14px; font-weight:700; letter-spacing:.12em;
  color:var(--pink); margin-bottom:24px;
  padding-bottom:16px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

/* botão rosa dentro do card */
.btn-preco-card {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  background: var(--pink);
  color: var(--dark);
  font-family: var(--f-body); font-size: 15px; font-weight: 600;
  padding: 14px 26px; border-radius: 8px;
  transition: background .25s, transform .25s;
  cursor: pointer;
}
.btn-preco-card:hover {
  background: #ffaee0;
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════
   7. FAQ
   ════════════════════════════════════════════ */
.sec-faq {
  background: var(--cream);
  overflow: hidden;
}

.faq-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: stretch;
  min-height: clamp(600px, 70vw, 860px);
}

.faq-content {
  padding: clamp(64px,9vw,110px) clamp(40px,5vw,80px);
  max-width: none;
  border-radius: 0;
}

.faq-heading {
  font-family: var(--f-display);
  font-size: clamp(24px,3vw,40px);
  color: var(--dark);
  line-height: 1.22;
  margin-bottom: clamp(28px,4vw,48px);
}

/* accordion */
.faq-list { border-top: 1px solid #e0d0da; }
.faq-item { border-bottom: 1px solid #e0d0da; }

.faq-q {
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding: 20px 0;
  text-align:left;
  font-family: var(--f-display); font-size: clamp(15px,1.4vw,18px);
  color: var(--dark);
  transition: color .2s;
}
.faq-q:hover { color: var(--wine); }
.faq-chevron { flex-shrink:0; color:var(--wine); transition: transform .35s cubic-bezier(.4,0,.2,1); }
.faq-item.open .faq-chevron { transform: rotate(-180deg); }

.faq-a { max-height:0; overflow:hidden; transition: max-height .42s cubic-bezier(.4,0,.2,1); }
.faq-a p { padding-bottom:20px; font-size:clamp(13px,1.2vw,15px); line-height:1.8; color:var(--gray); }
.faq-item.open .faq-a { max-height:280px; }

/* foto faq */
.faq-foto {
  overflow: hidden;
}
.faq-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ════════════════════════════════════════════
   8. FOOTER
   ════════════════════════════════════════════ */
.footer { background: var(--dark); }

.footer-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap: clamp(40px,7vw,100px);
  padding: clamp(56px,8vw,96px) 0;
  align-items:start;
}

.footer-logo {
  width: clamp(140px,16vw,200px); height:auto;
  margin-bottom:16px;
  filter: brightness(0) invert(1) opacity(.9);
}
.footer-local {
  font-size:13px; color:rgba(255,255,255,.4);
  line-height:1.8; margin-bottom:24px;
}
.footer-social { display:flex; gap:10px; }
.social-icon {
  width:42px; height:42px; border-radius:50%;
  border:1px solid rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.45);
  transition: border-color .2s, color .2s, background .2s;
}
.social-icon:hover {
  border-color:var(--pink); color:var(--pink);
  background:rgba(255,192,236,.08);
}

.footer-cta__title {
  font-family:var(--f-display);
  font-size:clamp(22px,2.8vw,32px);
  color:var(--white);
  margin-bottom:14px; line-height:1.25;
}
.footer-cta__text {
  font-size:14px; color:rgba(255,255,255,.45);
  line-height:1.8; margin-bottom:24px;
}
.footer-cta__btn { margin-bottom:14px; }
.footer-cta__urgency {
  font-size:12px; font-weight:600;
  color:var(--pink); letter-spacing:.04em;
  text-align:center;
}

.footer-bottom {
  border-top:1px solid rgba(255,255,255,.06);
  padding: 22px 0;
}
.footer-bottom .container { display:flex; flex-direction:column; gap:4px; }
.footer-bottom p { font-size:11.5px; color:rgba(255,255,255,.25); text-align:center; line-height:1.7; }
.footer-disclaimer { font-style:italic; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position:fixed; bottom:28px; right:28px; z-index:999;
  width:58px; height:58px; border-radius:50%;
  background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,.4);
  transition: transform .25s, box-shadow .25s;
  animation: pulse 2.8s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform:scale(1.12) translateY(-3px);
  box-shadow:0 8px 30px rgba(37,211,102,.5);
}

/* ════════════════════════════════════════════
   RESPONSIVO
   ════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .sobre-grid { gap: 36px; }
  .preco__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .faq-grid { grid-template-columns: 1fr; min-height: unset; }
  .faq-foto { height: 300px; }
  .faq-foto img { height: 100%; }
}

/* Mobile grande */
@media (max-width: 768px) {
  /* Hero */
  .hero__overlay {
    background: linear-gradient(
      to top,
      rgba(55,6,40,.92) 0%,
      rgba(55,6,40,.70) 38%,
      rgba(55,6,40,.25) 60%,
      rgba(55,6,40,.00) 78%
    );
  }
  .hero__photo { object-position: center 40%; }
  .hero__logo { display: flex; justify-content: center; margin-bottom: 48px; }
  .hero__inner { padding-bottom: 40px; padding-left: 20px; padding-right: 20px; }
  .hero__content { max-width: 100%; margin-top: auto; }
  .hero__headline { font-size: clamp(20px,6vw,28px); }
  .hero__ctas { flex-direction: row; align-items: center; gap: 10px; flex-wrap: nowrap; }
  .btn-video { order: 0; font-size: 13px; }
  .hero__ctas .btn-primary { padding: 12px 18px; font-size: 13px; }

  /* Sobre */
  .sobre-grid { grid-template-columns:1fr; }
  .sobre-grid__img img { height:320px; }

  /* Protocolo */
  .protocolo-cards { grid-template-columns:1fr; }

  /* Para quem */
  .sec-paraquem { grid-template-columns:1fr; }
  .paraquem__foto { height: 280px; }
  .paraquem__foto img { height:100%; }
  .paraquem__painel { padding: 40px 24px; gap: 32px; }

  /* Footer */
  .footer-grid { grid-template-columns:1fr; gap:40px; }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  .protocolo-cards { gap:14px; }
  .hero__headline { font-size: clamp(18px,5.5vw,24px); }
  .whatsapp-float { bottom:20px; right:20px; width:50px; height:50px; }
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
  .reveal-up,.reveal-left,.reveal-right,.reveal-scale { opacity:1; transform:none; }
}
