* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
:root{
  --bg: #0E1116;
  --text: #E9EEF6;
  --muted: #A9B3C4;
  --primary: #14A3B1;
  --primary-12: rgba(20,163,177,.12);
  --line: rgba(233,238,246,.10);
  --container: 1200px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-1: 0 10px 30px rgba(0,0,0,.25);
  --shadow-2: 0 30px 60px rgba(0,0,0,.35);
}

body{
  background: var(--bg);
  color: var(--text);
  font: 400 16px/1.5 "Inter", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans";
}

.container{ width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
a{ color: var(--text); text-decoration: none; }
a:hover{ opacity: .9; }
.ico{ width: 18px; height: 18px; display: inline-block; vertical-align: -3px; }

/* Botões */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 48px; padding: 0 22px; border-radius: 12px; border: 1px solid transparent;
  font-weight: 600; letter-spacing: .2px; text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn i{ font-size: 20px; }
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }
.btn-primary{ background: var(--primary); color: #07191B; box-shadow: 0 8px 24px rgba(20,163,177,.35); }
.btn-primary:hover{ box-shadow: 0 10px 28px rgba(20,163,177,.45); }
.btn-ghost{ background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover{ background: rgba(255,255,255,.03); }

/* ===== Header (não acompanha a rolagem) ===== */
.site-header{
  position: relative;               /* era: sticky */
  top: auto;
  z-index: 10;
  background: linear-gradient(
    to bottom,
    rgba(14,17,22,.9),
    rgba(14,17,22,.6) 60%,
    transparent
  );
  backdrop-filter: blur(6px);
}

.header-inner{
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Pill de localização */
.header-location{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  color: var(--text);
  font-weight: 600;
  letter-spacing: .2px;
}

/* Ações do topo (WhatsApp + CTA) */
.top-actions{
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.link-whatsapp{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}

/* Espaço após o header para não “colar” no conteúdo (opcional) */
.site-header + *{
  margin-top: 0px;
}


/* ===== HERO FULL ===== */
.hero{
  position: relative; isolation: isolate;
  min-height: 88vh;
  display: grid; align-items: center;
  background: url("images/hero-bg.jpg") center/cover no-repeat fixed;
}
.hero-overlay{
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(1200px 600px at 12% 10%, rgba(20,163,177,.10), transparent 60%),
    radial-gradient(1200px 600px at 88% 20%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(90deg, rgba(14,17,22,.84) 0%, rgba(14,17,22,.55) 55%, rgba(14,17,22,.18) 100%);
}
.hero-inner{
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px;
  padding: 50px 0 120px;
}

/* Lado do texto/foto */
.hero--text-left .hero-copy{ order: 1; text-align: left; }
.hero--text-left .hero-figure{ order: 2; justify-self: end; }
.hero--text-right .hero-copy{ order: 2; text-align: left; }
.hero--text-right .hero-figure{ order: 1; justify-self: start; }

/* Copy */
.hero-copy{ padding-top: 16px; max-width: 760px; }
.hero-logo{ width: 220px; height: auto; display: block; margin: 0 0 14px; } /* controle de tamanho da logo */
.hero-badge{
  display: inline-flex; align-items: center; gap: 10px;
  height: 36px; padding: 0 12px; border-radius: 999px;
  border: 1px solid var(--primary); background: var(--primary-12);
  color: var(--text); font-weight: 600; letter-spacing: .2px; margin-bottom: 18px;
}
.hero-title{ font-size: 56px; line-height: 1.04; letter-spacing: -0.8px; margin: 0 0 14px; }
.hero-sub{ color: var(--muted); font-size: 20px; line-height: 1.6; margin: 0 0 28px; }

.hero-ctas{ display: flex; gap: 12px; margin: 28px 0 22px; }
.hero-ctas .btn-lg{ height: 54px; padding: 0 26px; font-size: 17px; }

/* Tópicos — reforço visual para os 3 primeiros */
.hero-topics{
  list-style: none; padding: 0; margin: 16px 0 0;
  display: grid; gap: 10px; max-width: 760px;
  grid-template-columns: 1fr 1fr; /* grade de 2 colunas no desktop */
}
.topic{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  font-weight: 600;
}
.topic--strong{
  border-color: rgba(20,163,177,.35);
  background: rgba(20,163,177,.10);
}
.topic--lite{
  border-style: dashed;
  opacity: .95;
}

.hero-meta{ margin-top: 18px; display: flex; align-items: center; gap: 12px; color: var(--muted); }
.meta-item{ display: inline-flex; align-items: center; gap: 8px; }
.meta-sep{ opacity: .45; }

/* Figura do médico (maior e um pouco mais alta) */
.hero-figure{
  position: relative; display: grid; align-content: start; gap: 18px;
  padding-top: 8px;
}
.doctor-card{
  position: relative; margin: 0; padding: 0;
  width: 600px; aspect-ratio: 4/5; border-radius: var(--radius); background: transparent;
  transform: translateY(-8px);
}
.doctor-card::before{
  content:""; position: absolute; inset: 6% 6% 6% 6%;
  filter: blur(34px); z-index: 0;
  background: radial-gradient(60% 60% at 50% 40%, rgba(20,163,177,.35), transparent 70%);
}
.doctor-photo-cutout{
  position: absolute; inset: 0; margin: auto; z-index: 1;
  width: 600px; height: auto; display: block; object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,.45));
}

/* ===== SEÇÃO VÍDEO ===== */
.video-section{
  padding: 96px 0;
  background: var(--surface, #12161D);
}

.video-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.video-title{
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  max-width: 1000px;
  margin: 0 0 18px;
}

.video-sub{
  font-size: 18px;
  color: var(--muted);
  max-width: 860px;
  margin: 0 0 36px;
}

/* Frame do vídeo */
.video-frame{
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  margin-bottom: 16px;
}
.video-frame iframe{
  width: 100%;
  height: 100%;
  display: block;
}

/* CTA com a MESMA largura do vídeo */
.video-cta{
  width: 100%;
  max-width: 960px;          /* igual ao vídeo */
  display: flex;
  flex-direction: column;
  align-items: stretch;       /* botão ocupa toda a largura */
  gap: 10px;
}

/* Botão full-width */
.btn-cta{
  width: 100%;
  height: 58px;               /* um pouco mais alto que o padrão para destacar */
  font-size: 18px;
  justify-content: center;    /* centraliza conteúdo */
  box-shadow: 0 10px 28px rgba(20,163,177,.45);
}
.btn-cta i{ font-size: 22px; }

/* Mini-headline abaixo do botão (dor + benefício + escassez) */
.video-minihead{
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
}
.video-minihead strong{
  color: var(--primary, #14A3B1);
}

/* ===== SEÇÃO: O QUE PODE ESTAR TE INCOMODANDO ===== */
.questions-section{
  padding: 96px 0;
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent 30%);
}

.questions-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.questions-title{
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  max-width: 980px;
  margin: 0 0 12px;
}

.questions-sub{
  font-size: 18px;
  color: var(--muted);
  max-width: 820px;
  margin: 0 0 34px;
}

/* Lista de perguntas */
.questions-grid{
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr; /* desktop-first */
  gap: 12px;
  width: 100%;
  max-width: 1000px;
  text-align: left;
}

.q-item{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow-1);
}

.q-item .ico{ width: 20px; height: 20px; flex: 0 0 20px; margin-top: 2px; }
.q-item span{ color: var(--text); opacity: .96; }

/* Rodapé suave da seção */
.questions-foot{
  margin-top: 18px;
}
.questions-note{
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .2px;
  opacity: .95;
}

/* ===== SEÇÃO DEPOIMENTOS (VÍDEO VERTICAL) ===== */
.testimonials-section{
  padding: 96px 0;
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent 30%);
}

.testimonials-inner{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonials-header{
  text-align: center;
  max-width: 980px;
  margin: 0 auto 6px;
}
.testimonials-title{
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 10px;
}
.testimonials-sub{
  font-size: 18px;
  color: var(--muted);
  margin: 0;
}

/* Grid dos cards (desktop-first) */
.testimonials-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

/* Card */
.t-card{
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-1);
  display: grid;
  gap: 12px;
}

/* Headline-citação */
.t-headline{
  font-weight: 700;
  letter-spacing: .2px;
  line-height: 1.35;
  min-height: 44px;
}

/* Vídeo vertical 9:16 */
.t-frame{
  position: relative;
  width: 100%;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  background: #000;
}
.t-frame-vertical{ aspect-ratio: 9/16; } /* mantém formato vertical */
.t-frame iframe{ width: 100%; height: 100%; display: block; }

/* Caption enxuta */
.t-caption{
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* CTA da seção (mesma largura visual do grid) */
.testimonials-cta{
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
/* Ajuste da CTA dos depoimentos para igualar à largura do vídeo (960px) */
.testimonials-cta .btn-cta{
  width: 100%;
  max-width: 960px;   /* igual ao .video-frame */
  height: 58px;
  font-size: 18px;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(20,163,177,.45);
}

.testimonials-note{
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .2px;
  opacity: .95;
}

/* ===== SEÇÃO: SERVIÇOS ===== */
.services-section{
  padding: 96px 0;
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent 30%);
}
.services-inner{ display:flex; flex-direction:column; align-items:center; text-align:center; }
.services-title{
  font-size: 40px; line-height:1.2; font-weight:700; margin:0 0 12px; max-width:980px;
}
.services-sub{
  font-size: 18px; color: var(--muted); margin:0 0 34px; max-width: 860px;
}
.services-grid{
  width:100%;
  display:grid; grid-template-columns: repeat(3, 1fr); gap:16px;
}
.svc-card{
  text-align:left; background: rgba(255,255,255,.03); border:1px solid var(--line);
  border-radius: var(--radius); padding:18px; box-shadow: var(--shadow-1);
  display:grid; gap:10px;
}
.svc-head{ display:flex; align-items:center; gap:10px; }
.svc-head .ico{ width:20px; height:20px; }
.svc-head h3{ margin:0; font-size:20px; font-weight:700; letter-spacing:.2px; }
.svc-text{ margin:0; color:var(--text); opacity:.96; }
.svc-points{ list-style:none; margin:0; padding:0; display:grid; gap:8px; color:var(--muted); }
.services-cta{ margin-top:16px; }
.svc-cta{ border-color: rgba(20,163,177,.35); }

/* ===== SEÇÃO: JORNADA ===== */
.journey-section{
  padding: 56px 0 96 0;
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent 30%);
}
.journey-inner{ display:flex; flex-direction:column; align-items:center; text-align:center; gap:10px; }
.journey-title{ font-size:40px; line-height:1.2; font-weight:700; margin:0; }
.journey-sub{ font-size:18px; color:var(--muted); margin:0 0 28px; max-width: 860px; }

/* Passos em linha (desktop-first) */
.journey-steps{
  list-style:none; padding:0; margin:0;
  display:grid; grid-template-columns: repeat(5, 1fr); gap:16px;
  width:100%; max-width: 1100px; text-align:left;
}
.j-step{
  background: rgba(255,255,255,.03); border:1px solid var(--line);
  border-radius: var(--radius); padding:16px; box-shadow: var(--shadow-1);
  display:grid; gap:8px;
}
.j-step h3{ margin:0; font-size:18px; font-weight:700; }
.j-step p{ margin:0; color:var(--muted); }

/* Pins coloridos */
.j-pin{ width:36px; height:36px; border-radius:50%; display:grid; place-items:center; }
.j-pin .ico{ width:18px; height:18px; }
.j-pin--blue{ background:#1fb6ff22; border:1px solid #1fb6ff55; }
.j-pin--orange{ background:#ff9f1a22; border:1px solid #ff9f1a55; }
.j-pin--cyan{ background:#14a3b122; border:1px solid #14a3b155; }
.j-pin--pink{ background:#ff6b9922; border:1px solid #ff6b9955; }
.j-pin--violet{ background:#a78bfa22; border:1px solid #a78bfa55; }

/* CTA final da jornada (mesma largura do vídeo: 960px) */
.journey-cta{
  margin-top: 16px; display:flex; flex-direction:column; align-items:center; gap:8px;
}
.journey-cta .btn-cta{
  width:100%; max-width:960px; height:58px; font-size:18px; justify-content:center;
  box-shadow: 0 10px 28px rgba(20,163,177,.45);
}
.journey-note{ color:var(--muted); font-size:13px; letter-spacing:.2px; opacity:.95; }

/* Botão seta para baixo */
.scroll-down {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(20, 163, 177, 0.15);
  color: #14A3B1;
  border: 1px solid rgba(20, 163, 177, 0.35);
  text-decoration: none;
  transition: all 0.3s ease;
	margin-top: 100px;
}

.scroll-down:hover {
  background: rgba(20, 163, 177, 0.25);
  transform: translateY(2px);
}

.scroll-down i {
  width: 28px;
  height: 28px;
}

/* ===== SOBRE O DR. DOUGLAS ===== */
.about-section{
  padding: 150px 0 100px 0;
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent 30%);
}
.about-inner{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr; /* foto | texto */
  gap: 36px;
  align-items: start;
}

/* Foto */
.about-card{
  margin: 0;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.about-photo{
  display: block;
  width: 100%;
  height: 560px;           /* desktop-first */
  object-fit: cover;
  background: #0b0f14;
}

/* Conteúdo */
.about-content{ text-align: left; }

.about-cred-badge{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(20,163,177,.35);
  background: rgba(20,163,177,.10);
  color: var(--text);
  font-weight: 700; letter-spacing: .2px;
  margin-bottom: 12px;
}
.about-cred-badge .ico{ width: 18px; height: 18px; }
.about-cred-badge .dot{ opacity: .6; margin: 0 2px; }

.about-title{
  font-size: 40px; line-height: 1.2; font-weight: 700;
  margin: 0 0 10px;
}
.about-lead{
  font-size: 18px; color: var(--text); opacity: .96; margin: 0 0 14px;
}

/* Destaques */
.about-highlights{
  list-style: none; padding: 0; margin: 16px 0 0;
  display: grid; gap: 10px; max-width: 720px;
}
.about-highlights li{
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 12px;
  border: 1px solid var(--line); background: rgba(255,255,255,.03);
}
.about-highlights .ico{ width: 18px; height: 18px; }

/* Social / Prova */
.about-social{
  margin-top: 16px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
}
/* Botão do Instagram com cor oficial */
.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.25s ease;
  border: none; /* Remove a borda */
}
.ig-link:hover {
  opacity: 0.9;
}
.ig-link i {
  font-size: 18px;
}

.about-note{ color: var(--muted); font-size: 13px; letter-spacing: .2px; opacity: .95; }



/* ===== POR QUE EMAGRECER COM UM MÉDICO ===== */
.why-medical-section{
  padding: 96px 0;
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent 30%);
}

.why-medical-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.why-title{
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
  max-width: 1000px;
}
.why-sub{
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 860px;
}

/* Vídeo destaque (mesma lógica das outras seções) */
.why-frame{
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  margin-bottom: 16px;
}
.why-frame iframe{
  width: 100%;
  height: 100%;
  display: block;
}

/* Chips de razões */
.why-chips{
  list-style: none; padding: 0; margin: 0 0 8px;
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  max-width: 960px;
}
.chip{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(20,163,177,.35);
  background: rgba(20,163,177,.10);
  color: var(--text);
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: .2px;
}
.chip .ico{ width: 18px; height: 18px; }

/* CTA igual à largura do vídeo (960px) */
.why-cta{
  margin-top: 8px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.why-cta .btn-cta{
  width: 100%; max-width: 960px;
  height: 58px; font-size: 18px; justify-content: center;
  box-shadow: 0 10px 28px rgba(20,163,177,.45);
}
.why-note{
  color: var(--muted); font-size: 13px; letter-spacing: .2px; opacity: .95;
}

/* ===== REPOSIÇÃO HORMONAL FEMININA ===== */
.hrf-section{
  padding: 96px 0;
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent 30%);
}
.hrf-inner{
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px;
}
.hrf-title{
  font-size: 40px; line-height: 1.2; font-weight: 700; margin: 0;
}
.hrf-sub{
  font-size: 18px; color: var(--muted); margin: 0 0 24px; max-width: 900px;
}

/* Grid 2 colunas (desktop-first) */
.hrf-grid{
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Card de vídeo */
.hrf-card{
  text-align: left;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-1);
  display: grid; gap: 10px;
}
.hrf-head{
  display: flex; align-items: center; gap: 10px; margin-bottom: 2px;
}
.hrf-head .ico{ width: 20px; height: 20px; }
.hrf-head h3{
  margin: 0; font-size: 18px; font-weight: 700; letter-spacing: .2px;
}

/* Player com mesma estética das outras seções (16:9) */
.hrf-frame{
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  background: #000;
}
.hrf-frame iframe{ width: 100%; height: 100%; display: block; }

.hrf-caption{
  margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5;
}

/* Rodapé/nota */
.hrf-foot{ margin-top: 10px; }
.hrf-note{ color: var(--muted); font-size: 13px; letter-spacing: .2px; opacity: .95; }

/* ===== FAQ (central + animação) ===== */
.faq2-section{
  padding: 96px 0;
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent 30%);
}
.faq2-inner{ max-width: 900px; margin: 0 auto; text-align: center; }
.faq2-title{ font-size: 40px; line-height: 1.2; font-weight: 700; margin: 0 0 10px; }
.faq2-sub{ font-size: 18px; color: var(--muted); margin: 0 0 22px; }

.faq2-list{ text-align: left; display: grid; gap: 10px; }
.faq2-list details{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding: 12px 14px;
  box-shadow: var(--shadow-1);
  overflow: hidden; /* para animação */
}
.faq2-list summary{
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-weight: 700; letter-spacing: .2px;
}
.faq2-list summary::-webkit-details-marker{ display: none; }

/* seta gira ao abrir */
.faq2-list details[open] summary .ico{ transform: rotate(180deg); transition: transform .25s ease; }
.faq2-list summary .ico{ width: 18px; height: 18px; transition: transform .25s ease; }

/* conteúdo com animação */
.faq-answer{
  margin-top: 8px; color: var(--muted); font-size: 15px; line-height: 1.6;
  max-height: 0; opacity: 0; transform: translateY(-4px);
  transition: max-height .35s ease, opacity .25s ease, transform .25s ease;
}
details[open] .faq-answer{
  max-height: 240px; /* suficiente para 3–4 linhas */
  opacity: 1; transform: translateY(0);
}

/* ===== Footer central (CTA degradê compacto) ===== */
.sales-footer2{
  padding: 72px 0 60px;
  background: #0E1116;
  border-top: 1px solid var(--line);
}
.footer2-inner{ display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.footer2-logo{ width: 200px; height: auto; display: block; margin-bottom: 6px; }

/* CTA compacto com degradê premium */
.footer2-cta{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; font-size: 17px; font-weight: 600; color: #fff;
  border-radius: 40px; text-decoration: none;
  transition: transform .2s ease, filter .2s ease;
  box-shadow: 0 8px 22px rgba(20,163,177,.35);
}
.footer2-cta.gradient{
  background: linear-gradient(135deg, #14A3B1, #3BC7D4 45%, #6FE3ED 100%);
}
.footer2-cta:hover{ transform: translateY(-1px); filter: brightness(1.02); }
.footer2-cta i{ font-size: 20px; }

.footer2-note{ color: var(--muted); font-size: 13px; letter-spacing: .2px; opacity: .95; }

.footer2-data{ margin-top: 6px; display: grid; gap: 10px; justify-items: center; max-width: 960px; }
.footer2-row{
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text); text-decoration: none;
  padding: 10px 12px; border-radius: 12px; border: 1px solid var(--line); background: rgba(255,255,255,.03);
}
.footer2-row .ico{ width: 18px; height: 18px; }

.footer2-ig{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: 12px;
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  color: #fff; text-decoration: none; font-weight: 600;
  transition: opacity .25s ease;
}
.footer2-ig:hover{ opacity: .9; }

.footer2-cred{ display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-weight: 600; letter-spacing: .2px; }
.footer2-cred .ico{ width: 18px; height: 18px; }

.footer2-bottom{ margin-top: 10px; color: var(--muted); font-size: 13px; letter-spacing: .2px; opacity: .95; }

/* ===== BOTÃO WHATSAPP — pill no desktop, bolinha no mobile ===== */
.whatsapp-float{
  position: fixed;
  bottom: calc(26px + env(safe-area-inset-bottom, 0px));
  right: calc(26px + env(safe-area-inset-right, 0px));
  background-color: #25D366; /* cor primária do site */
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;          /* pill desktop */
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
  text-decoration: none;
  font-size: 15px;
  z-index: 9999;
  transform: translateY(0);
  opacity: 1;
  transition: transform .28s ease, opacity .28s ease, box-shadow .25s ease, filter .25s ease;
  animation: wf-pulse 2.8s infinite ease-in-out;
}
.whatsapp-float i{
  font-size: 20px;
  animation: wf-swing 4s infinite ease-in-out;
}
.whatsapp-float:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.3);
  filter: brightness(1.03);
}

/* Acessibilidade: foco visível */
.whatsapp-float:focus-visible{
  outline: 2px solid rgba(255,255,255,.9);
  outline-offset: 2px;
}

/* Estado oculto (scroll para cima) */
.whatsapp-float.is-hidden{
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

/* Fade-in inicial suave */
.whatsapp-float.preload{
  opacity: 0;
  transform: translateY(6px);
}

/* Pulso suave no botão */
@keyframes wf-pulse{
  0%,100%{ transform: scale(1); }
  50%{ transform: scale(1.04); }
}

/* Balanço sutil no ícone */
@keyframes wf-swing{
  0%,100%{ transform: rotate(0deg); }
  45%{ transform: rotate(4deg); }
  55%{ transform: rotate(-4deg); }
}

/* Respeita preferência por menos movimento */
@media (prefers-reduced-motion: reduce){
  .whatsapp-float, .whatsapp-float i{ animation: none !important; }
  .whatsapp-float{ transition: opacity .2s ease, transform .2s ease; }
}

/* ===== MOBILE: bolinha com ícone ===== */
@media (max-width: 900px){
  .whatsapp-float{
    width: 64px;
    height: 64px;
    padding: 0;                /* remove padding do pill */
    border-radius: 999px;      /* bolinha */
    justify-content: center;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    right: calc(16px + env(safe-area-inset-right, 0px));
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
  }
  .whatsapp-float .wf-text{ display: none; }  /* some o texto no mobile */
  .whatsapp-float i{ font-size: 26px; }
}

/* MOBILE */


/* ===== MOBILE FIX — Header + Hero ===== */
@media (max-width: 900px){

  /* some o topo no mobile */
  .site-header{ display: none; }
  .site-header + *{ margin-top: 0; }

  /* Hero empilhada (foto -> texto) */
  .hero{
    background: none;              /* remove o bg fixo do desktop */
    min-height: unset;
  }
  .hero-inner{
    display: grid;
    grid-template-columns: 1fr;    /* 1 coluna */
    gap: 18px;
    padding: 0 0 56px;             /* tira padding superior, mantém inferior */
  }
	
	 .hero-copy{
    margin-top: -8vh; /* sobe o texto e sobrepõe parte da imagem */
    position: relative;
    z-index: 2; /* garante que fique por cima da foto */
    padding: 0 16px; /* um pouco de respiro nas laterais */
  }

  /* Opcional: um leve fundo para melhorar contraste */
  .hero-copy::before{
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(14,17,22,0.85), transparent);
    z-index: -1;
    border-radius: 8px;
  }

  /* ORDEM: figura primeiro, texto depois */
  .hero--text-left .hero-figure,
  .hero--text-right .hero-figure{ order: 1; justify-self: center; padding-top: 0; }

  .hero--text-left .hero-copy,
  .hero--text-right .hero-copy{ order: 2; text-align: left; padding-top: 0; }

  /* Foto ocupa largura toda e altura confortável */
    .doctor-card{
    width: 100%;
    height: 30vh;                  /* ocupa ~30% da altura da tela */
    max-height: none;              /* sem limite fixo em px */
    border-radius: var(--radius);
    overflow: hidden;
    transform: none;
  }
  .doctor-card::before{ display: none; }  /* sem brilho */
  .doctor-photo-cutout{
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;              /* cobre como bg */
    filter: none;
    display: block;
  }
  /* Conteúdo da hero */
  .container{ padding: 0 20px; }   /* respiro lateral */
  .hero-logo{ width: 170px; margin: 0 0 10px; }
  .hero-badge{ height: 32px; padding: 0 10px; margin-bottom: 12px; }
  .hero-title{ font-size: 32px; line-height: 1.18; margin: 0 0 10px; letter-spacing: -.4px; }
  .hero-sub{ font-size: 16px; line-height: 1.5; margin: 0 0 16px; }

  /* CTAs empilhadas e full-width */
  .hero-ctas{ display: grid; grid-template-columns: 1fr; gap: 10px; margin: 14px 0 10px; }
  .hero-ctas .btn-lg{ width: 100%; height: 50px; font-size: 16px; }

  /* Tópicos em 1 coluna */
  .hero-topics{ grid-template-columns: 1fr; gap: 8px; max-width: none; }

  /* Meta: um abaixo do outro */
  .hero-meta{
    margin-top: 12px;
    display: flex;
    flex-direction: column;        /* empilha */
    align-items: flex-start;
    gap: 6px;
    font-size: 14px;
  }
  .meta-sep{ display: none; }      /* remove o ponto separador */
}

/* ===== MOBILE — Seção de Vídeo ===== */
@media (max-width: 900px){

  .video-section{
    padding: 56px 0;                 /* menos alto no mobile */
  }

  .video-inner{
    padding: 0 20px;                 /* respiro lateral */
  }

  .video-title{
    font-size: 28px;
    line-height: 1.22;
    margin: 0 0 10px;
    max-width: 36ch;                 /* limita linha pra leitura */
  }

  .video-sub{
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 18px;
    max-width: 46ch;
  }

  /* Player full width (mantém 16:9) */
  .video-frame{
    max-width: none;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-1);
  }
  .video-frame iframe{
    width: 100%;
    height: 100%;
    display: block;
  }

  /* CTA = mesma largura do player (100%) */
  .video-cta{
    max-width: none;
    gap: 8px;
  }
  .video-cta .btn-cta{
    height: 52px;
    font-size: 16px;
    box-shadow: 0 8px 22px rgba(20,163,177,.35);
  }

  .video-minihead{
    font-size: 13.5px;
    line-height: 1.45;
    opacity: .95;
  }
}

/* ===== MOBILE — O que pode estar te incomodando ===== */
@media (max-width: 900px){

  .questions-section{
    padding: 56px 0;
  }

  .questions-inner{
    padding: 0 20px;                 /* respiro lateral */
    text-align: left;                /* leitura mais natural no mobile */
    align-items: stretch;
  }

  .questions-title{
    font-size: 28px;
    line-height: 1.22;
    margin: 0 0 10px;
    max-width: 36ch;
  }

  .questions-sub{
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 18px;
    max-width: 46ch;
    color: var(--muted);
  }

  /* Cards em 1 coluna */
  .questions-grid{
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: none;
  }

  .q-item{
    padding: 12px 14px;
    border-radius: 12px;
    gap: 10px;
    min-height: 56px;                /* toque confortável */
  }

  .q-item .ico{
    width: 18px; height: 18px;
    flex: 0 0 18px;
    margin-top: 2px;
  }

  .q-item span{
    font-size: 15.5px;
    line-height: 1.5;
  }

  .questions-foot{ margin-top: 14px; }
  .questions-note{
    font-size: 12.5px;
    letter-spacing: .2px;
    opacity: .95;
  }
}

/* ===== MOBILE — Depoimentos (vídeos verticais) ===== */
@media (max-width: 900px){

  .testimonials-section{
    padding: 56px 0;
  }

  .testimonials-inner{
    gap: 14px;
    padding: 0 20px;             /* respiro lateral */
  }

  .testimonials-header{
    margin: 0 0 2px;
    text-align: left;            /* leitura mais natural */
  }

  .testimonials-title{
    font-size: 28px;
    line-height: 1.22;
    margin: 0 0 8px;
    max-width: 36ch;
  }

  .testimonials-sub{
    font-size: 15px;
    line-height: 1.55;
    color: var(--muted);
    max-width: 46ch;
  }

  /* Grid: 1 coluna no mobile */
  .testimonials-grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Card mais compacto */
  .t-card{
    padding: 14px;
    gap: 10px;
    border-radius: 12px;
    box-shadow: var(--shadow-1);
  }

  /* Headline/citação */
  .t-headline{
    font-size: 16px;
    line-height: 1.45;
    min-height: unset;
  }

  /* Player 9:16 preservado, cantos suaves */
  .t-frame{
    border-radius: 12px;
    box-shadow: var(--shadow-2);
  }
  .t-frame-vertical{ aspect-ratio: 9/16; }
  .t-frame iframe{ width: 100%; height: 100%; display: block; }

  /* Legenda */
  .t-caption{
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--muted);
  }

  /* CTA final — full width */
  .testimonials-cta{
    margin-top: 8px;
    gap: 6px;
    padding: 0 0;               /* usa o padding do .testimonials-inner */
  }
  .testimonials-cta .btn-cta{
    max-width: none;
    height: 52px;
    font-size: 16px;
    box-shadow: 0 8px 22px rgba(20,163,177,.35);
  }
  .testimonials-note{
    font-size: 12.5px;
    letter-spacing: .2px;
    opacity: .95;
  }
}

/* ===== MOBILE — Reposição Hormonal Feminina ===== */
@media (max-width: 900px){

  .hrf-section{
    padding: 56px 0;
  }

  .hrf-inner{
    padding: 0 20px;                 /* respiro lateral */
    text-align: left;                /* leitura mais natural no mobile */
    gap: 8px;
  }

  .hrf-title{
    font-size: 28px;
    line-height: 1.22;
    margin: 0 0 8px;
    max-width: 36ch;
  }

  .hrf-sub{
    font-size: 15px;
    line-height: 1.55;
    color: var(--muted);
    margin: 0 0 18px;
    max-width: 46ch;
  }

  /* Grid vira 1 coluna */
  .hrf-grid{
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: none;
    width: 100%;
  }

  /* Card compacto */
  .hrf-card{
    padding: 14px;
    border-radius: 12px;
    box-shadow: var(--shadow-1);
    gap: 8px;
  }

  .hrf-head{ gap: 8px; margin-bottom: 0; }
  .hrf-head .ico{ width: 18px; height: 18px; }
  .hrf-head h3{
    font-size: 17px;
    line-height: 1.3;
    margin: 0;
  }

  /* Player 16:9 preservado com cantos suaves */
  .hrf-frame{
    aspect-ratio: 16/9;
    border-radius: 12px;
    box-shadow: var(--shadow-2);
  }
  .hrf-frame iframe{ width: 100%; height: 100%; display: block; }

  .hrf-caption{
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--muted);
    margin: 0;
  }

  .hrf-foot{ margin-top: 10px; }
  .hrf-note{
    font-size: 12.5px;
    letter-spacing: .2px;
    opacity: .95;
  }
}

/* ===== MOBILE — Serviços (“Vou lhe ajudar com…”) ===== */
@media (max-width: 900px){

  .services-section{
    padding: 56px 0;
  }

  .services-inner{
    padding: 0 20px;           /* respiro lateral */
    text-align: left;          /* leitura mais natural */
  }

  .services-title{
    font-size: 28px;
    line-height: 1.22;
    margin: 0 0 10px;
    max-width: 36ch;
  }

  .services-sub{
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 18px;
    max-width: 46ch;
    color: var(--muted);
  }

  /* grid → 1 coluna */
  .services-grid{
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  /* cards mais compactos e “tocáveis” */
  .svc-card{
    padding: 14px;
    border-radius: 12px;
    box-shadow: var(--shadow-1);
    gap: 8px;
  }
  .svc-head{ gap: 8px; }
  .svc-head .ico{ width: 18px; height: 18px; }
  .svc-head h3{ font-size: 18px; margin: 0; }

  .svc-text{
    font-size: 15px;
    line-height: 1.55;
    color: var(--text);
    opacity: .96;
    margin: 0;
  }

  .svc-points{
    gap: 6px;
  }
  .svc-points li{
    font-size: 14px;
    line-height: 1.45;
    color: var(--muted);
  }

  /* CTA/Seta para a jornada — menor e com menos espaço */
  .services-cta{ margin-top: 16px; }
  .scroll-down{
    width: 44px; height: 44px;
    margin-top: 24px;            /* era 100px no desktop */
    border-radius: 50%;
  }
  .scroll-down i{ width: 24px; height: 24px; }
}

/* ===== MOBILE — Jornada ===== */
@media (max-width: 900px){

  .journey-section{
    padding: 56px 0;                 /* mais compacto no mobile */
  }

  .journey-inner{
    padding: 0 20px;                 /* respiro lateral */
    text-align: left;                /* leitura mais natural */
    gap: 8px;
  }

  .journey-title{
    font-size: 28px;
    line-height: 1.22;
    margin: 0 0 8px;
    max-width: 36ch;
  }

  .journey-sub{
    font-size: 15px;
    line-height: 1.55;
    color: var(--muted);
    margin: 0 0 18px;
    max-width: 46ch;
  }

  /* steps → 1 coluna */
  .journey-steps{
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: none;
    width: 100%;
  }

  .j-step{
    padding: 14px;
    border-radius: 12px;
    box-shadow: var(--shadow-1);
    gap: 8px;
  }

  /* pin menor e alinhado */
  .j-pin{
    width: 32px; height: 32px;
    border-radius: 50%;
    display: grid; place-items: center;
  }
  .j-pin .ico{ width: 16px; height: 16px; }

  .j-step h3{
    font-size: 18px;
    line-height: 1.3;
    margin: 0;
  }
  .j-step p{
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--muted);
    margin: 0;
  }

  /* CTA full width */
  .journey-cta{
    margin-top: 14px;
    gap: 6px;
    align-items: stretch;            /* faz o botão ocupar a largura */
  }
  .journey-cta .btn-cta{
    max-width: none;
    height: 52px;
    font-size: 16px;
    box-shadow: 0 8px 22px rgba(20,163,177,.35);
  }
  .journey-note{
    font-size: 12.5px;
    letter-spacing: .2px;
    opacity: .95;
  }
}

/* ===== MOBILE — Sobre o Dr. Douglas ===== */
@media (max-width: 900px){

  .about-section{
    padding: 56px 0;
  }

  .about-inner{
    display: flex;
    flex-direction: column;   /* empilha imagem e texto */
    gap: 24px;
    padding: 0 20px;
  }

  .about-photo{
  order: 1;
  width: 100%;       /* ocupa toda a largura */
  max-width: none;   /* remove limite */
  margin: 0 auto;
}
.about-photo img{
  width: 100%;
  height: auto;
  border-radius: 0; /* sem bordas arredondadas para ocupar total */
  box-shadow: none; /* remove sombra se quiser fullscreen clean */
}

	

  .about-content{
    order: 2;                 /* texto vem depois */
    text-align: left;
  }

  .about-title{
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .about-subtitle{
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 18px;
  }

  .about-text{
    font-size: 15px;
    line-height: 1.55;
    color: var(--muted);
  }

  /* CTA */
  .about-cta{
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .about-cta .btn{
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  /* Ordem no mobile */
  .why-section {
    display: flex;
    flex-direction: column;
  }
  .why-image {
    order: 1;
    width: 100%;
  }
  .why-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
  }

  /* Texto sobreposto à imagem */
  .why-text {
    order: 2;
    margin-top: -40px; /* sobreposição */
    background: rgba(14,17,22,0.9);
    padding: 20px;
    border-radius: var(--radius);
  }

  /* Ajuste de título e parágrafo */
  .why-text h2 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 14px;
  }
  .why-text p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
  }

  /* CTA */
  .why-text .btn {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 18px auto 0;
  }
}

/* ===== MOBILE — FAQ ===== */
@media (max-width: 900px){

  .faq2-section{
    padding: 56px 0;
  }

  .faq2-inner{
    padding: 0 20px;              /* respiro lateral */
    text-align: left;             /* leitura mais natural */
  }

  .faq2-title{
    font-size: 28px;
    line-height: 1.22;
    margin: 0 0 8px;
    max-width: 36ch;
  }

  .faq2-sub{
    font-size: 15px;
    line-height: 1.55;
    color: var(--muted);
    margin: 0 0 16px;
    max-width: 46ch;
  }

  .faq2-list{
    gap: 10px;
  }

  /* Accordion mais “tocável” */
  .faq2-list details{
    padding: 0;                   /* zera, vamos dar padding no summary e no conteúdo */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-1);
  }

  .faq2-list summary{
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    padding: 14px 14px;           /* área de toque maior */
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
  }
  .faq2-list summary .ico{
    width: 18px; height: 18px; flex: 0 0 18px;
    transition: transform .25s ease;
  }
  details[open] summary .ico{ transform: rotate(180deg); }

  /* Conteúdo com animação e respiro */
  .faq-answer{
    padding: 0 14px 12px 14px;   /* conteúdo respira sem inflar o summary */
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--muted);
    max-height: 0;
    opacity: 0;
    transform: translateY(-4px);
    transition: max-height .35s ease, opacity .25s ease, transform .25s ease;
  }
  details[open] .faq-answer{
    max-height: 260px;           /* suficiente para ~4–5 linhas */
    opacity: 1;
    transform: translateY(0);
  }

  /* Estado de foco (acessibilidade) */
  .faq2-list summary:focus{
    outline: 2px solid rgba(20,163,177,.45);
    outline-offset: 2px;
    border-radius: 10px;
  }
}


/* ===== MOBILE — Footer ===== */
@media (max-width: 900px){

  .sales-footer2{
    padding: 48px 0 44px;
  }

  .footer2-inner{
    padding: 0 20px;                  /* respiro lateral */
    gap: 12px;
    text-align: center;
  }

  /* logo menor no mobile */
  .footer2-logo{
    width: 160px;
    margin-bottom: 4px;
  }

  /* CTA full-width, confortável ao toque */
  .footer2-cta{
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
    font-size: 16px;
    border-radius: 36px;
    box-shadow: 0 8px 22px rgba(20,163,177,.35);
  }
  .footer2-cta i{ font-size: 20px; }

  .footer2-note{
    font-size: 12.5px;
    line-height: 1.4;
    opacity: .95;
  }

  /* dados empilhados e “tocáveis” */
  .footer2-data{
    width: 100%;
    display: grid;
    gap: 8px;
    justify-items: stretch;           /* cada linha ocupa a largura inteira */
  }

  .footer2-row{
    width: 100%;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 12px;
    gap: 8px;
  }
  .footer2-row .ico{ width: 18px; height: 18px; }

  /* Instagram chamativo e largo */
  .footer2-ig{
    width: 100%;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 700;
  }

  /* CRM/RQE mais discreto */
  .footer2-cred{
    justify-content: center;
    gap: 6px;
    font-size: 13px;
  }

  .footer2-bottom{
    margin-top: 8px;
    font-size: 12.5px;
    opacity: .9;
  }
}


