:root{
  --bg: #0b0f14;
  --text: #e8edf5;
  --muted: #a9b6c7;
  --brand: #6ab0ff;
  --wa-1: #25d366;
  --wa-2: #1ec85e;
  --divider: rgba(255,255,255,.12);
  --shadow: 0 10px 30px rgba(0,0,0,.45);

  /* Espaços da HERO */
  --hero-pt: clamp(28px, 6vh, 80px);   /* respiro topo */
  --hero-pr: 20px;
  --hero-pb: clamp(24px, 6vh, 80px);   /* respiro base */
  --hero-pl: 20px;
}

*{
  box-sizing: border-box;
}
html,
body{
  margin: 0;
  padding: 0;
  height: 100%;
}
body{
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1000px 700px at 85% -10%, rgba(106,176,255,.12), transparent 60%),
    radial-gradient(600px 400px at 10% 10%, rgba(34,197,94,.08), transparent 55%),
    var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img{
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== HERO ===== */
.hero-black{
  position: relative;
  min-height: 100vh;
  color: var(--text);
  display: grid;
  place-items: stretch;
  overflow: clip;
}
.hero__inner{
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: var(--hero-pt) var(--hero-pr) var(--hero-pb) var(--hero-pl);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr; /* left | right */
  grid-template-areas: "content figure";
  gap: 24px;
  height: 100%;
  align-items: center;            /* conteúdo ao centro vertical */
}

/* Left: conteúdo */
.hero__content{
  z-index: 2;
  align-self: center;
  grid-area: content;
}

.hero__logo{
  height: 56px;
  width: auto;
  margin-bottom: 12px;
  filter: brightness(0) invert(1) saturate(0) contrast(105%);
  opacity: .95;
}

.hero__eyebrow{
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__title{
  margin: 0 0 10px;
  font-family: Rufina, serif;
  font-size: clamp(26px, 4.4vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.hero__subtitle{
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: clamp(14px, 1.7vw, 18px);
  max-width: 760px;
}
.hero__subtitle em{
  opacity: .9;
}

/* CTA WhatsApp */
.hero__cta{
  --h: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: var(--h);
  padding: 0 22px;
  background: linear-gradient(180deg, var(--wa-1), var(--wa-2));
  color: #052b16;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: .01em;
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: var(--shadow);
  transform: translateZ(0);
  transition: transform .06s ease, filter .18s ease, box-shadow .18s ease;
  text-decoration: none;
  white-space: nowrap;
}
.hero__cta:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 14px 34px rgba(0,0,0,.5);
}
.hero__cta-ico{
  width: 20px;
  height: 20px;
  fill: #052b16;
  flex: 0 0 auto;
}

/* Right (figura sem fundo) */
.hero__figure{
  position: relative;
  height: 100%;
  min-height: 420px;
  display: grid;
  align-items: end;               /* ancora embaixo para equilíbrio visual */
  justify-items: end;
  overflow: hidden;
  grid-area: figure;
}
.hero__figure img{
  height: min(88vh, 760px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,.55));
  opacity: .98;
  pointer-events: none;
}

/* ===== Responsivo HERO ===== */
@media (max-width: 980px){
  :root{
    --hero-pt: clamp(28px, 6vh, 72px);
    --hero-pb: clamp(24px, 6vh, 60px);
  }

  .hero__inner{
    grid-template-columns: 1fr;
    grid-template-areas:
      "figure"
      "content";
    align-items: start;
  }

  .hero__figure{
    height: auto;
    min-height: 0;
    margin: 0 0 12px;
    justify-items: center;
  }
  .hero__figure img{
    height: auto;
    max-height: 42vh;
    width: auto;
  }

  .hero__content{
    align-self: start;
  }
}

/* ===== SECTION: Destaques Integrativa ===== */
.sec-highlights{
  position: relative;
  padding: 18px 20px 26px;
  background:
    radial-gradient(820px 520px at 50% -40%, rgba(106,176,255,.16), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--divider);
}
.sec-highlights__inner{
  max-width: 1200px;
  margin: 0 auto;
}

.highlights{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
}

/* Card base */
.highlight-card{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(5,8,12,.92);
  padding: 14px 16px;
  box-shadow: 0 14px 32px rgba(0,0,0,.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 76px;
}
.highlight-card__eyebrow{
  margin: 0 0 4px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.highlight-card__title{
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

/* Card numérico (+13 anos) */
.highlight-card--number{
  align-items: flex-start;
}
.highlight-card__number{
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 2px;
}
.highlight-card__label{
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Responsivo */
@media (max-width: 768px){
  .highlights{
    grid-template-columns: 1fr;
  }
}


/* ===== SECTION: Vídeo Medicina Integrativa ===== */
.sec-video{
  position: relative;
  padding: clamp(48px, 8vw, 96px) 20px;
  background:
    radial-gradient(880px 580px at 5% -10%, rgba(106,176,255,.12), transparent 60%),
    radial-gradient(760px 540px at 95% 110%, rgba(34,197,94,.08), transparent 55%),
    var(--bg);
  border-top: 1px solid var(--divider);
}
.sec-video__inner{
  max-width: 1200px;
  margin: 0 auto;
}

.sec-video__layout{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(26px, 3.4vw, 40px);
  align-items: center;
}

/* Colunas */
.sec-video__col{
  position: relative;
}
.sec-video__col--media{
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
.sec-video__col--content{
  align-self: center;
}

/* Label acima do vídeo */
.sec-video__label{
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

/* Moldura do vídeo (card) */
.video-frame{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--divider);
  box-shadow: 0 20px 46px rgba(0,0,0,.55);
  background:
    radial-gradient(600px 380px at 0% 0%, rgba(106,176,255,.20), transparent 60%),
    #05080c;
  transform: translateZ(0);
}
.video-frame__ratio{
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
}
.video-frame__ratio iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Legenda do vídeo */
.sec-video__caption{
  margin: 10px 0 0;
  font-size: 13.5px;
  color: var(--muted);
  max-width: 520px;
}

/* Conteúdo textual (lado direito) */
.sec-video .eyebrow{
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.sec-video .title{
  margin: 0 0 10px;
  font-family: Rufina, serif;
  font-size: clamp(22px, 3.2vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--text);
}
.sec-video .lead{
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: clamp(14px, 1.6vw, 18px);
  max-width: 520px;
}

/* Lista de benefícios / argumentos */
.sec-video__list{
  margin: 0 0 14px;
  padding-left: 18px;
  font-size: 14.5px;
  color: var(--text);
}
.sec-video__list li{
  margin-bottom: 5px;
  color: var(--muted);
}
.sec-video__list li strong{
  color: var(--text);
}

/* Nota explicativa */
.sec-video__note{
  margin: 0 0 18px;
  font-size: 13.5px;
  color: var(--muted);
  max-width: 520px;
}

/* CTA reaproveitando o botão WhatsApp */
.btn-wa{
  --h: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: var(--h);
  padding: 0 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--wa-1), var(--wa-2));
  color: #052b16;
  font-weight: 700;
  letter-spacing: .01em;
  border: 1px solid rgba(0,0,0,.12);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  transition: transform .06s ease, filter .18s ease, box-shadow .18s ease;
}
.btn-wa:hover{
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 14px 32px rgba(0,0,0,.45);
}
.btn-wa__ico{
  width: 18px;
  height: 18px;
  fill: #052b16;
}
.sec-video__cta{
  margin-top: 4px;
}

/* Responsivo vídeo */
@media (max-width: 980px){
  .sec-video__layout{
    grid-template-columns: 1fr;
  }
  .sec-video__col--media{
    order: -1; /* vídeo vem antes no mobile */
  }
}

/* ===== SECTION: Doenças mais comuns ===== */
.sec-doencas{
  position: relative;
  padding: clamp(48px, 8vw, 96px) 20px;
  background:
    radial-gradient(880px 600px at 10% -10%, rgba(106,176,255,.10), transparent 60%),
    radial-gradient(760px 540px at 90% 110%, rgba(34,197,94,.08), transparent 55%),
    var(--bg);
  border-top: 1px solid var(--divider);
}
.sec-doencas__inner{
  max-width: 1200px;
  margin: 0 auto;
}

/* Cabeçalho */
.sec-doencas .eyebrow{
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.sec-doencas .title{
  margin: 0 0 10px;
  font-family: Rufina, serif;
  font-size: clamp(22px, 3.4vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--text);
}
.sec-doencas .lead{
  margin: 8px 0 22px;
  color: var(--muted);
  font-size: clamp(14px, 1.6vw, 18px);
  max-width: 820px;
}

/* Grid de doenças: 3 por linha no desktop */
.diseases-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

/* Card individual */
.disease-card{
  border-radius: 16px;
  border: 1px solid var(--divider);
  background:
    radial-gradient(520px 360px at 0% 0%, rgba(106,176,255,.12), transparent 60%),
    rgba(5,8,12,.96);
  padding: 14px 14px 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}
.disease-card:hover{
  transform: translateY(-2px);
  border-color: rgba(106,176,255,.45);
  background:
    radial-gradient(520px 360px at 0% 0%, rgba(106,176,255,.16), transparent 60%),
    rgba(5,8,12,.98);
}

/* Icone/bolinha visual */
.disease-card__icon{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(106,176,255,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.18), rgba(106,176,255,.26));
}
.disease-card__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #6ab0ff;
  box-shadow: 0 0 0 4px rgba(106,176,255,.25);
}

/* Título da doença */
.disease-card__title{
  margin: 0;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.disease-card__title span{
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 2px;
}

/* Responsivo */
@media (max-width: 980px){
  .diseases-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px){
  .diseases-grid{
    grid-template-columns: 1fr;
  }
}

/* ===== SECTION: Faixa Lair Ribeiro + Dra. Marielle ===== */
.sec-lair{
  width: 100%;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  background: #05070b; /* leve contraste com o fundo */
}

/* Linha de fotos full width */
.sec-lair__row{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
}

/* Cada foto ocupa 1/4 da tela no desktop */
.sec-lair__item{
  margin: 0;
  position: relative;
  overflow: hidden;
}

/* As imagens preenchem o bloco, cortando o excesso */
.sec-lair__item img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  /* altura mínima para a faixa ficar forte no desktop */
  min-height: 260px;
  transition: transform .35s ease, filter .25s ease;
}

/* Efeito leve de hover no desktop */
@media (hover: hover){
  .sec-lair__item img:hover{
    transform: scale(1.04);
    filter: brightness(1.05);
  }
}

/* Responsivo: 2 por linha em tablets, 1 por linha no mobile */
@media (max-width: 900px){
  .sec-lair__row{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px){
  .sec-lair__row{
    grid-template-columns: 1fr;
  }
  .sec-lair__item img{
    min-height: 220px;
  }
}

/* ===== SECTION: Totalidade & Ortomolecular ===== */
.sec-ortho{
  position: relative;
  padding: clamp(48px, 8vw, 96px) 20px;
  background:
    radial-gradient(860px 580px at 90% -10%, rgba(106,176,255,.10), transparent 60%),
    radial-gradient(760px 520px at 5% 110%, rgba(34,197,94,.08), transparent 55%),
    var(--bg);
  border-top: 1px solid var(--divider);
}
.sec-ortho__inner{
  max-width: 1200px;
  margin: 0 auto;
}

/* Grid principal */
.sec-ortho__layout{
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(26px, 3.2vw, 40px);
  align-items: flex-start;
}
.sec-ortho__col{
  position: relative;
}

/* Cabeçalho / texto da esquerda */
.sec-ortho .eyebrow{
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.sec-ortho .title{
  margin: 0 0 10px;
  font-family: Rufina, serif;
  font-size: clamp(22px, 3.4vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--text);
}
.sec-ortho .lead{
  margin: 8px 0 14px;
  color: var(--muted);
  font-size: clamp(14px, 1.6vw, 18px);
  max-width: 640px;
}

/* Lista de diferenciais */
.sec-ortho__list{
  margin: 4px 0 12px;
  padding-left: 18px;
  font-size: 14.5px;
  color: var(--text);
}
.sec-ortho__list li{
  margin-bottom: 6px;
  color: var(--muted);
}
.sec-ortho__list li strong{
  color: var(--text);
}

/* Nota final */
.sec-ortho__note{
  margin: 4px 0 0;
  font-size: 13.5px;
  color: var(--muted);
  max-width: 620px;
  border-left: 2px solid rgba(106,176,255,.55);
  padding-left: 12px;
}

/* Card da ortomolecular (coluna direita) */
.ortho-card{
  border-radius: 18px;
  border: 1px solid var(--divider);
  background:
    radial-gradient(720px 520px at 0% 0%, rgba(106,176,255,.18), transparent 60%),
    rgba(5,8,12,.98);
  padding: clamp(18px, 2.4vw, 24px);
  box-shadow: 0 22px 52px rgba(0,0,0,.65);
}
.ortho-card__title{
  margin: 0 0 10px;
  font-family: Rufina, serif;
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.3;
  color: var(--text);
}
.ortho-card__intro{
  margin: 0 0 12px;
  font-size: 14.5px;
  color: var(--muted);
}

/* Blocos de doença */
.ortho-block{
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.ortho-block:first-of-type{
  border-top: none;
  padding-top: 4px;
}
.ortho-block__title{
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.ortho-block__text{
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* Responsivo */
@media (max-width: 980px){
  .sec-ortho__layout{
    grid-template-columns: 1fr;
  }
}

/* ===== SECTION: Depoimentos em Vídeo ===== */
.sec-testimonials{
  position: relative;
  padding: clamp(48px, 8vw, 96px) 20px;
  background:
    radial-gradient(880px 600px at 10% -10%, rgba(106,176,255,.10), transparent 60%),
    radial-gradient(760px 540px at 90% 110%, rgba(34,197,94,.08), transparent 55%),
    var(--bg);
  border-top: 1px solid var(--divider);
}
.sec-testimonials__inner{
  max-width: 1200px;
  margin: 0 auto;
}

/* Cabeçalho */
.sec-testimonials__head .eyebrow{
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.sec-testimonials__head .title{
  margin: 0 0 10px;
  font-family: Rufina, serif;
  font-size: clamp(22px, 3.4vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--text);
}
.sec-testimonials__head .lead{
  margin: 8px 0 22px;
  color: var(--muted);
  font-size: clamp(14px, 1.6vw, 18px);
  max-width: 820px;
}

/* Grid de cards */
.sec-testimonials__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 24px);
}

/* Card individual */
.testimonial-card{
  background: rgba(255,255,255,.03);
  border-radius: 18px;
  border: 1px solid var(--divider);
  padding: 12px 12px 14px;
  box-shadow: 0 18px 42px rgba(0,0,0,.55);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}
.testimonial-card:hover{
  transform: translateY(-2px);
  border-color: rgba(106,176,255,.40);
  background: rgba(255,255,255,.04);
}

/* Label do card */
.testimonial-card__label{
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 2px 2px;
}

/* Moldura do vídeo vertical */
.testimonial-card__frame{
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(230,234,238,.18);
  background:
    radial-gradient(520px 360px at 0% 0%, rgba(106,176,255,.22), transparent 60%),
    #05080c;
}
.testimonial-card__ratio{
  position: relative;
  width: 100%;
  padding-top: 177.78%; /* 9:16 vertical */
}
.testimonial-card__ratio iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Legenda */
.testimonial-card__caption{
  margin: 6px 2px 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* Responsivo */
@media (max-width: 1100px){
  .sec-testimonials__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px){
  .sec-testimonials__grid{
    grid-template-columns: 1fr;
  }
}

/* ===== SECTION: Sobre a Dra. Marielle ===== */
.sec-about{
  position: relative;
  padding: clamp(56px, 8.5vw, 104px) 20px;
  background:
    radial-gradient(880px 620px at 95% -10%, rgba(106,176,255,.10), transparent 60%),
    radial-gradient(760px 540px at 0% 110%, rgba(34,197,94,.08), transparent 55%),
    var(--bg);
  border-top: 1px solid var(--divider);
}
.sec-about__inner{
  max-width: 1200px;
  margin: 0 auto;
}

/* Grid principal */
.sec-about__grid{
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  grid-template-areas: "photo text";
  gap: clamp(26px, 3.2vw, 40px);
  align-items: center;
}
.sec-about__col{
  position: relative;
}
.sec-about__col--photo{
  align-self: stretch;
  display: flex;
  align-items: center;
  grid-area: photo;
}
.sec-about__col--text{
  align-self: center;
  grid-area: text;
}

/* Imagem */
.sec-about__figure{
  margin: 0;
  width: 100%;
  max-width: 420px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--divider);
  box-shadow: 0 22px 52px rgba(0,0,0,.6);
  background:
    radial-gradient(620px 420px at 10% 0%, rgba(106,176,255,.18), transparent 60%),
    #05080c;
}
.sec-about__figure img{
  display: block;
  width: 100%;
  height: auto;
}

/* Texto */
.sec-about .eyebrow{
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.sec-about .title{
  margin: 0 0 6px;
  font-family: Rufina, serif;
  font-size: clamp(24px, 3.4vw, 38px);
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: var(--text);
}
.sec-about__crm{
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.sec-about__lead{
  margin: 0 0 10px;
  font-size: 14.5px;
  color: var(--muted);
  max-width: 640px;
}
.sec-about__text{
  margin: 0 0 10px;
  font-size: 14.5px;
  color: var(--muted);
  max-width: 680px;
}
.sec-about__highlights{
  margin: 8px 0 10px;
}
.sec-about__closing{
  margin: 6px 0 14px;
  font-size: 14.5px;
  color: var(--text);
  max-width: 640px;
}

/* Badges */
.sec-about__badges{
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sec-about__badges li{
  padding: 7px 11px;
  font-size: 12.5px;
  color: var(--text);
  background: rgba(255,255,255,.03);
  border-radius: 999px;
  border: 1px solid var(--divider);
  backdrop-filter: blur(4px);
}

/* Responsivo */
@media (max-width: 980px){
  .sec-about__grid{
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "text";
  }
  .sec-about__col--photo{
    justify-content: flex-start;
  }
  .sec-about__figure{
    max-width: 360px;
  }
}

/* ===== SECTION: Programas Integrativos em Vídeo ===== */
.sec-programs{
  position: relative;
  padding: clamp(48px, 8vw, 96px) 20px;
  background:
    radial-gradient(880px 600px at 5% -10%, rgba(106,176,255,.10), transparent 60%),
    radial-gradient(760px 540px at 95% 110%, rgba(34,197,94,.08), transparent 55%),
    var(--bg);
  border-top: 1px solid var(--divider);
}
.sec-programs__inner{
  max-width: 1200px;
  margin: 0 auto;
}

/* Cabeçalho */
.sec-programs__head .eyebrow{
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.sec-programs__head .title{
  margin: 0 0 10px;
  font-family: Rufina, serif;
  font-size: clamp(22px, 3.4vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--text);
}
.sec-programs__head .lead{
  margin: 8px 0 22px;
  color: var(--muted);
  font-size: clamp(14px, 1.6vw, 18px);
  max-width: 860px;
}

/* Grid: 2 por linha no desktop */
.programs-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 26px);
}

/* Card de programa */
.program-card{
  background: rgba(255,255,255,.03);
  border-radius: 18px;
  border: 1px solid var(--divider);
  box-shadow: 0 18px 42px rgba(0,0,0,.55);
  padding: 12px 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}
.program-card:hover{
  transform: translateY(-2px);
  border-color: rgba(106,176,255,.40);
  background: rgba(255,255,255,.04);
}

/* Moldura do vídeo (16:9) */
.program-card__frame{
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(230,234,238,.18);
  background:
    radial-gradient(520px 360px at 0% 0%, rgba(106,176,255,.22), transparent 60%),
    #05080c;
}
.program-card__ratio{
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
}
.program-card__ratio iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Conteúdo textual do card */
.program-card__content{
  padding: 4px 4px 0;
}
.program-card__title{
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.program-card__text{
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* Responsivo */
@media (max-width: 900px){
  .programs-grid{
    grid-template-columns: 1fr;
  }
}

/* ===== SECTION: Citação – Cuidado total do paciente ===== */
.sec-quote-int{
  position: relative;
  padding: clamp(48px, 7vw, 88px) 20px;
  background:
    radial-gradient(820px 580px at 50% -20%, rgba(106,176,255,.14), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--divider);
}
.sec-quote-int__inner{
  max-width: 900px;
  margin: 0 auto;
}
.sec-quote-int__card{
  border-radius: 22px;
  border: 1px solid rgba(106,176,255,.40);
  background:
    radial-gradient(720px 520px at 0% 0%, rgba(34,197,94,.18), transparent 60%),
    rgba(5,8,12,.98);
  padding: clamp(24px, 4vw, 32px);
  box-shadow: 0 24px 56px rgba(0,0,0,.65);
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 40px);
}

/* Eyebrow */
.sec-quote-int__eyebrow{
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Texto da citação */
.sec-quote-int__text{
  margin: 0 0 12px;
  font-family: Rufina, serif;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.6;
  color: var(--text);
}

/* Assinatura */
.sec-quote-int__author{
  margin: 4px 0 2px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.sec-quote-int__role{
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--muted);
}

/* Subtítulo que introduz o FAQ */
.sec-quote-int__subtitle{
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FAQ – Dúvidas sobre medicina integrativa ===== */
.faq-int{
  border-radius: 18px;
  border: 1px solid var(--divider);
  background: rgba(5,8,12,.96);
  padding: clamp(18px, 3vw, 24px);
  box-shadow: 0 20px 48px rgba(0,0,0,.6);
}
.faq-int__title{
  margin: 0 0 10px;
  font-family: Rufina, serif;
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.3;
  color: var(--text);
}
.faq-int__list{
  margin-top: 8px;
}

/* Cada pergunta */
.faq-int__item{
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  padding: 10px 12px;
  margin-bottom: 8px;
}

/* Cabeçalho (summary) */
.faq-int__item[open]{
  background: rgba(255,255,255,.04);
  border-color: rgba(106,176,255,.40);
}
.faq-int__question{
  list-style: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-int__question::-webkit-details-marker{
  display: none;
}

/* Setinha de abrir/fechar */
.faq-int__question::after{
  content: "+";
  font-size: 16px;
  margin-left: 10px;
  color: var(--muted);
  flex-shrink: 0;
}
.faq-int__item[open] .faq-int__question::after{
  content: "–";
}

/* Corpo da resposta */
.faq-int__answer{
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}
.faq-int__answer p{
  margin: 0;
}

/* ===== FOOTER ===== */
.site-footer{
  position: relative;
  padding: 22px 20px;
  background: #05070b;
  border-top: 1px solid var(--divider);
}
.site-footer__inner{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: clamp(14px, 2.4vw, 26px);
  align-items: center;
}

/* Colunas */
.site-footer__col{
  font-size: 13px;
  color: var(--muted);
}
.site-footer__title{
  margin: 0 0 4px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
}
.site-footer__text{
  margin: 0;
  line-height: 1.6;
}

/* Contatos */
.site-footer__col--contact{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.site-footer__link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s ease, opacity .15s ease;
}
.site-footer__link span{
  border-bottom: 1px solid transparent;
}
.site-footer__link:hover{
  color: var(--text);
}
.site-footer__link:hover span{
  border-bottom-color: rgba(230,234,238,.6);
}
.site-footer__ico{
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex: 0 0 auto;
}

/* Crédito */
.site-footer__col--credit{
  text-align: right;
}
.site-footer__credit{
  margin: 0;
  font-size: 12.5px;
  color: var(--muted);
}
.site-footer__credit a{
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(230,234,238,.5);
}
.site-footer__credit a:hover{
  opacity: .9;
}

/* Responsivo footer */
@media (max-width: 980px){
  .site-footer__inner{
    grid-template-columns: 1fr;
    text-align: left;
  }
  .site-footer__col--credit{
    text-align: left;
  }
}

/* ===== BOTÃO FLUTUANTE WHATSAPP ===== */
.wa-float{
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 32px rgba(0,0,0,.6);
  text-decoration: none;
  z-index: 999;
  transition: transform .12s ease, box-shadow .12s ease, filter .15s ease;
}
.wa-float__ico{
  width: 30px;
  height: 30px;
  fill: #ffffff;
}
.wa-float:hover{
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 40px rgba(0,0,0,.7);
  filter: brightness(1.05);
}

/* Ajuste para telas pequenas */
@media (max-width: 480px){
  .wa-float{
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
  .wa-float__ico{
    width: 26px;
    height: 26px;
  }
}
