/*
  Dentalli Implantes - CSS revisado e organizado
  Versão limpa para manutenção.
  Ajustes feitos: remoção de blocos antigos, correção de @media aninhado,
  agrupamento visual por seções e preservação do layout final aprovado.
*/
/******************************************************************************
  01 - Variáveis e base global
******************************************************************************/

:root {
    --bg:#02080e;
    --bg2:#05131d;
    --cyan:#64d8ff;
    --gold:#d7bd83;
    --green:#25d366;
    --greenDark:#08210f;
    --muted:#a9b8c5;
    --line:rgba(255,255,255,.12);
    --white:#fff;
    --red:#e51c31
}
* {
    box-sizing:border-box
}
html {
    scroll-behavior:smooth
}
body {
    margin:0;
    background:var(--bg);
    font-family:Inter,system-ui,Arial,sans-serif;
    color:#fff;
    overflow-x:hidden
}
a {
    color:inherit;
    text-decoration:none
}
img,video {
    max-width:100%;
    display:block
}
.skip {
    position:absolute;
    left:-999px;
    top:10px;
    background:#fff;
    color:#000;
    padding:10px;
    z-index:999
}
.skip:focus {
    left:10px
}
.container {
    width: min(95%, 1900px);
    margin: 0 auto;
}

/******************************************************************************
  02 - Topo / Header
******************************************************************************/

.topShell {
    position:absolute;
    top:0;
    left:0;
    right:0;
    z-index:50;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:28px 48px
}
.brandMark {
    display:flex;
    align-items:center;
    gap:14px
}
.brandMark img {
    width:58px;
    height:58px;
    object-fit:contain;
    border-radius:50%;
    filter:drop-shadow(0 0 16px rgba(100,216,255,.18))
}
.brandMark strong {
    display:block;
    font-size:27px;
    line-height:1;
    font-weight:900;
    letter-spacing:.02em;
    background:linear-gradient(90deg,#fff,#d7bd83 78%);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
    text-transform:uppercase
}
.brandMark small {
    display:block;
    margin-top:5px;
    color:var(--muted);
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:.16em
}
.backSite {
    font-size:14px;
    color:#eaf6fb;
    opacity:.9
}

/******************************************************************************
  03 - Hero principal
******************************************************************************/

.hero {
    position:relative;
    min-height:900px;
    padding:128px 0 48px;
    overflow:hidden;
    background:#02080e
}
.heroBg {
    position:absolute;
    inset:0;
    z-index:0
}
.heroBg img {
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    filter:saturate(.75) brightness(.32) contrast(1.08);
    transform:scale(1.08);
    transition:opacity 1.6s ease,transform 7s ease
}
.heroBg img.is-active {
    opacity:.56;
    transform:scale(1.02)
}
.heroOverlay {
    position:absolute;
    inset:0;
    z-index:1;
    background:radial-gradient(circle at 75% 38%,rgba(100,216,255,.18),transparent 30%),linear-gradient(90deg,rgba(2,8,14,.96) 0%,rgba(2,8,14,.82) 40%,rgba(2,8,14,.56) 68%,rgba(2,8,14,.92) 100%),linear-gradient(180deg,rgba(2,8,14,.45),#02080e 98%)
}
.heroGrid {
    position:relative;
    z-index:2;
    display:grid;
     grid-template-columns:1.08fr .92fr;
    gap:120px;
    align-items:center
}
.eyebrow,.kicker {
    color:var(--cyan);
    text-transform:uppercase;
    letter-spacing:.32em;
    font-weight:800;
    font-size:13px
}
.hero h1 {
    font-size:clamp(48px,6vw,78px);
    line-height:.96;
    letter-spacing:-.065em;
    margin:18px 0 24px;
    max-width:690px
}
.hero h1 span,.videoText h2 span,.sectionRow h2 span,.sectionHead h2 span,.finalCard h2 span {
    color:var(--gold)
}
.lead {
    font-size:20px;
    line-height:1.65;
    color:#d7e2ea;
    max-width:560px;
    margin:0 0 34px
}
.heroActions {
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    margin-bottom:28px
}

/******************************************************************************
  04 - Botões e CTAs
******************************************************************************/

.btn {
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    min-height:72px;
    padding:15px 26px;
    border-radius:12px;
    border:1px solid transparent;
    font-weight:900;
    cursor:pointer;
    overflow:hidden;
    transition:.25s ease;
    text-align:left
}
.btn b {
    display:block;
    text-transform:uppercase;
    letter-spacing:.02em
}
.btn small {
    display:block;
    font-size:12px;
    font-weight:600;
    opacity:.85;
    margin-top:2px
}
.btn:hover {
    transform:translateY(-3px)
}
.btnWa {
    background:linear-gradient(180deg,#2ce878,#1fc45e);
    color:#06210f;
    box-shadow:0 16px 34px rgba(37,211,102,.22)
}
.btnGhost,.btnOutline {
    background:rgba(255,255,255,.035);
    border-color:rgba(215,189,131,.45);
    color:#fff;
    backdrop-filter:blur(10px)
}
.btnOutline {
    min-height:54px
}
.btnSlim {
    min-height:54px;
    padding:14px 22px
}
.btnShine:before {
    content:"";
    position:absolute;
    top:-40%;
    left:-80%;
    width:42%;
    height:180%;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,.42),transparent);
    transform:rotate(22deg);
    animation:shine 4.6s infinite
}
@keyframes shine {
    0% {
        left:-90%
    }
    20% {
        left:150%
    }
    100% {
        left:150%
    }
}
.whatsMini {
    display:grid;
    place-items:center;
    width:34px;
    height:34px;
    border-radius:50%;
    background:rgba(255,255,255,.22);
    flex:0 0 34px
}
.whatsMini svg {
    width:25px;
    height:25px
}
.playIcon {
    width:38px;
    height:38px;
    border-radius:50%;
    display:grid;
    place-items:center;
    border:1px solid rgba(100,216,255,.45);
    color:#fff
}

/******************************************************************************
  05 - Avaliação Google no Hero
******************************************************************************/

.googleLine {
    display:flex;
    align-items:center;
    gap:9px;
    flex-wrap:wrap;
    color:#fff
}
.googleLine img {
    width:31px;
    height:31px;
    object-fit:contain;
    background:white;
    border-radius:50%;
    padding:3px;
    box-shadow:0 6px 16px rgba(0,0,0,.22)
}
.stars {
    color:#ffd14a;
    letter-spacing:2px
}
.googleLine small {
    width:100%;
    padding-left:40px;
    color:#d8e5ec
}

/******************************************************************************
  06 - Foto e card do dentista no Hero
******************************************************************************/

.heroDoctor{
  position:relative;
  min-height:560px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  overflow:visible;
}

.doctorGlow{
  position:absolute;
  inset:18% 0 0;
  border-radius:40px;
  background:radial-gradient(circle at center,rgba(100,216,255,.16),transparent 64%);
  filter:blur(20px);
}

.doctorImg{
  position:relative;
  z-index:2;
  max-height:600px;
  object-fit:contain;
  object-position:center bottom;
  filter:drop-shadow(0 40px 70px rgba(0,0,0,.55));
}

.doctorCard{
  position:absolute;
  z-index:4;
  right:50%;
  bottom:-10px;
  transform:translateX(50%);
  width:min(520px,92%);
  padding:22px 26px;
  border-radius:28px;
  text-align:center;
  background:linear-gradient(180deg,rgba(13,27,40,.88),rgba(4,13,22,.94));
  border:1px solid rgba(215,189,131,.30);
  box-shadow:0 24px 60px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter:blur(18px);
  overflow:hidden;
}

.doctorCard::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 20% 15%,rgba(100,216,255,.10),transparent 34%);
  pointer-events:none;
}

.doctorCard > img{
  display:none;
}

.doctorInfo{
  position:relative;
  z-index:2;
  display:grid;
  justify-items:center;
  gap:7px;
}

.doctorName{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}

.doctorName strong{
  font-size:23px;
  line-height:1.1;
  margin:0;
  color:#fff;
}

.doctorCheck{
  width:18px;
  height:18px;
  border-radius:50%;
  background:#25d366;
  color:#fff;
  display:grid;
  place-items:center;
  font-size:11px;
  font-weight:900;
  flex:0 0 18px;
}

.doctorMeta{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}

.doctorMeta span{
  font-size:16px;
  font-weight:800;
  color:#fff;
}

.doctorMeta small{
  margin:0;
  font-size:14px;
  color:var(--muted);
}

.doctorRating{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-top:4px;
  flex-wrap:wrap;
}

.doctorRating img{
  display:block !important;
  width:22px !important;
  height:22px !important;
  min-width:22px !important;
  max-width:22px !important;
  aspect-ratio:1 / 1;
  border-radius:50%;
  background:#fff;
  padding:3px;
  object-fit:contain;
}

.doctorRating .stars{
  color:#ffd14a;
  font-size:14px;
  letter-spacing:1.5px;
  line-height:1;
}

.doctorRating b{
  color:#fff;
  font-size:14px;
  white-space:nowrap;
}

.doctorInfo em{
  margin-top:0;
  font-style:normal;
  color:var(--muted);
  font-size:12px;
}

@media(max-width:520px){
  .heroDoctor{
    min-height:318px;
  }

  .doctorImg{
    max-height:390px;
  }

  .doctorCard{
    bottom:-6px;
    width:calc(100% - 28px);
    padding:18px 16px;
    border-radius:24px;
  }

  .doctorName strong{
    font-size:20px;
  }

  .doctorMeta{
    gap:5px;
  }

  .doctorMeta span,
  .doctorMeta small{
    font-size:13px;
  }

  .doctorRating{
    gap:6px;
  }

  .doctorRating img{
    width:19px;
    height:19px;
    max-width:19px;
  }

  .doctorRating .stars,
  .doctorRating b{
    font-size:13px;
  }

  .doctorInfo em{
    font-size:12px;
  }
}



/******************************************************************************
  07 - Barra de confiança
******************************************************************************/

.trustBar {
    position:relative;
    z-index:3;
    margin-top:90px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border:1px solid var(--line);
    background:rgba(5,16,26,.74);
    backdrop-filter:blur(14px);
    border-radius:18px;
    padding:22px
}
.trustBar div {
    display:grid;
    grid-template-columns:44px 1fr;
    gap:0 14px;
    align-items:center;
    border-right:1px solid rgba(255,255,255,.08);
    padding:0 20px
}
.trustBar div:last-child {
    border-right:0
}
.lineIcon {
    grid-row:span 2;
    color:var(--cyan);
    width:40px;
    height:40px;
    display:grid;
    place-items:center
}
.lineIcon svg {
    width:36px;
    height:36px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.7;
    stroke-linecap:round;
    stroke-linejoin:round
}
.trustBar strong {
    font-size:26px
}
.trustBar small {
    color:var(--muted)
}

/******************************************************************************
  08 - Espaçamento padrão das seções
******************************************************************************/

.sectionPad {
    padding:80px 0;
    background:#030b12
}

/******************************************************************************
  09 - Seção de vídeo / resultado real
******************************************************************************/

.videoIntroGrid {
    display:grid;
    grid-template-columns:.75fr 1.25fr;
    gap:56px;
    align-items:center
}
.videoText h2,.sectionRow h2,.sectionHead h2,.whyCopy h2,.finalCard h2,.bandBox h2 {
    font-size:clamp(30px,4vw,52px);
    line-height:1.05;
    letter-spacing:-.04em;
    margin:14px 0
}
.videoText p,.sectionRow p,.whyCopy p,.sectionHead p,.finalCard p,.bandBox p {
    color:var(--muted);
    font-size:17px;
    line-height:1.65
}
.videoFeature {
    position:relative;
    border-radius:18px;
    overflow:hidden;
    border:1px solid var(--line);
    box-shadow:0 24px 70px rgba(0,0,0,.35);
    background:#071522
}
.videoFeature video {
    width:100%;
    height:390px;
    object-fit:cover;
    filter:brightness(.74)
}
.bigPlay {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.85);
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: 30px;
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
  cursor: pointer;
  box-shadow: 0 12px 35px rgba(0,0,0,.35);
  transition: .25s ease;
}

.bigPlay::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  animation: playPulse 1.8s infinite;
}

.bigPlay:hover {
  transform: scale(1.06);
  background: rgba(37,211,102,.9);
  border-color: #25d366;
}

@keyframes playPulse {
  0% {
    transform: scale(.9);
    opacity: .8;
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .bigPlay {
    width: 68px;
    height: 68px;
    font-size: 26px;
  }
}


.videoBadges {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border-top:1px solid var(--line)
}
.videoBadges span {
    padding:16px;
    text-align:center;
    color:#dce8ef;
    border-right:1px solid var(--line);
    font-size:13px
}
.videoBadges span:last-child {
    border-right:0
}

/******************************************************************************
  10 - Cabeçalhos das seções
******************************************************************************/

.sectionRow {
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:24px;
    margin-bottom:34px
}
.sectionRow>div {
    max-width:620px
}

/******************************************************************************
  11 - Casos reais
******************************************************************************/

.cases {
    background:linear-gradient(180deg,#030b12,#04121d)
}
.caseGrid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px
}
.caseCard {
    position:relative;
    border:1px solid var(--line);
    background:#071522;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 18px 44px rgba(0,0,0,.28);
    cursor:pointer;
    transition:.25s ease
}
.caseCard:hover {
    transform:translateY(-6px);
    border-color:rgba(100,216,255,.35)
}
.caseCard img {
    width:100%;
    height:540px;
    object-fit:cover;
    filter:saturate(.94) brightness(.76)
}
.caseCard div {
    padding:18px
}
.caseCard small {
    text-transform:uppercase;
    color:#fff;
    background:rgba(255,255,255,.12);
    padding:5px 8px;
    border-radius:999px;
    font-size:10px
}
.caseCard strong {
    display:block;
    font-size:19px;
    margin:10px 0 4px
}
.caseCard a {
    color:var(--muted);
    font-size:13px
}
.compareLine {
    position:absolute;
    top:0;
    bottom:88px;
    left:50%;
    width:1px;
    background:rgba(255,255,255,.7)
}
.compareLine:after {
    content:"↔";
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:30px;
    height:30px;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:rgba(3,11,18,.82);
    border:1px solid rgba(255,255,255,.5);
    font-size:12px
}

/******************************************************************************
  12 - Faixa de conversão / CTA intermediário
******************************************************************************/

.conversionBand {
    background:linear-gradient(180deg,#04121d,#030b12);
    padding:52px 0
}
.bandBox {
    display:grid;
    grid-template-columns:1fr auto;
    gap:28px;
    align-items:center;
    padding:32px;
    border:1px solid rgba(215,189,131,.3);
    border-radius:18px;
    background:radial-gradient(circle at 10% 50%,rgba(100,216,255,.12),transparent 38%),rgba(255,255,255,.035)
}
.bandBox h2 {
    font-size:clamp(26px,3.2vw,42px)
}

/******************************************************************************
  13 - Por que escolher a Dentalli
******************************************************************************/

.why {
    background:#02080e
}
.whyGrid {
    display:grid;
    grid-template-columns:.48fr 1fr;
    gap:34px;
    align-items:stretch
}
.whyCopy {
    border:1px solid var(--line);
    border-radius:18px;
    padding:34px;
    background:rgba(255,255,255,.025)
}
.whyCards {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border:1px solid var(--line);
    border-radius:18px;
    overflow:hidden;
    background:rgba(255,255,255,.025)
}
.whyCards article {
    padding:28px 18px;
    text-align:center;
    border-right:1px solid var(--line)
}
.whyCards article:last-child {
    border-right:0
}
.whyCards .lineIcon {
    margin:0 auto
}
.whyCards strong {
    display:block;
    font-size:17px;
    margin:14px 0 10px
}
.whyCards p {
    font-size:13px;
    color:var(--muted)
}

/******************************************************************************
  14 - Processo do tratamento
******************************************************************************/

.processBox {
    border:1px solid var(--line);
    border-radius:18px;
    background:rgba(255,255,255,.025);
    padding:28px
}
.steps {
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
    margin-top:22px
}
.steps div {
    position:relative;
    padding:0 18px
}
.steps b {
    color:var(--gold);
    font-size:13px
}
.steps strong {
    display:block;
    margin:7px 0
}
.steps p {
    color:var(--muted);
    font-size:13px
}

/******************************************************************************
  15 - Galeria / documentação clínica
******************************************************************************/

.gallery {
    background:#02080e
}
.center {
    text-align:center;
    max-width:760px;
    margin:0 auto 34px
}
.photoWall {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px
}
.photoWall img {
    height:260px;
    width:100%;
    object-fit:cover;
    border-radius:16px;
    border:1px solid var(--line);
    filter:brightness(.85);
    transition:.25s ease
}
.photoWall img:hover {
    transform:scale(1.02);
    filter:brightness(1)
}

/******************************************************************************
  16 - Avaliações / depoimentos
******************************************************************************/

.reviews {
    background:linear-gradient(180deg,#030b12,#061522)
}
.reviewGrid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px
}
.reviewCard {
    position:relative;
    padding:26px;
    border-radius:18px;
    background:rgba(255,255,255,.94);
    color:#101820;
    min-height:210px
}
.reviewCard span {
    color:#ffbd21;
    letter-spacing:2px
}
.reviewCard p {
    color:#344050;
    line-height:1.7
}
.reviewCard b {
    position:absolute;
    right:22px;
    bottom:18px;
    color:#4285f4;
    background:white;
    border:1px solid #e7edf4;
    border-radius:50%;
    width:34px;
    height:34px;
    display:grid;
    place-items:center
}

/******************************************************************************
  17 - FAQ e CTA final
******************************************************************************/

.faqGrid {
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:28px
}
.faq {
    border:1px solid var(--line);
    background:rgba(255,255,255,.025);
    border-radius:18px;
    padding:24px
}
.faq details {
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.07);
    border-radius:12px;
    margin-top:10px;
    padding:0 16px
}
.faq summary {
    cursor:pointer;
    padding:16px 0;
    font-weight:800
}
.faq summary::marker {
    content:""
}
.faq summary:after {
    content:"+";
    float:right
}
.faq details[open] summary:after {
    content:"–"
}
.faq p {
    color:var(--muted);
    padding-bottom:16px;
    margin:0
}
.finalCard {
    position:relative;
    overflow:hidden;
    border:1px solid var(--line);
    background:radial-gradient(circle at 85% 25%,rgba(100,216,255,.18),transparent 36%),rgba(255,255,255,.03);
    border-radius:18px;
    padding:36px;
    min-height:390px;
    display:flex;
    align-items:center
}
.finalCard>div {
    max-width:500px;
    z-index:2
}
.finalCard img {
    position:absolute;
    right:0;
    bottom:-70px;
    width:330px;
    opacity:.9;
    border-radius:28px 0 18px 0
}

/******************************************************************************
  18 - Botão flutuante do WhatsApp
******************************************************************************/

.waFloat {
    position:fixed;
    right:24px;
    bottom:24px;
    width:72px;
    height:72px;
    border-radius:50%;
    background:#25d366;
    color:white;
    display:grid;
    place-items:center;
    z-index:90;
    box-shadow:0 0 0 0 rgba(37,211,102,.45),0 16px 40px rgba(0,0,0,.35);
    animation:waPulse 2.4s infinite
}
.waFloat svg {
    width:42px;
    height:42px
}
@keyframes waPulse {
    70% {
        box-shadow:0 0 0 18px rgba(37,211,102,0),0 16px 40px rgba(0,0,0,.35)
    }
}

/******************************************************************************
  19 - Animações de entrada e lightbox
******************************************************************************/

.reveal {
    opacity:0;
    transform:translateY(18px);
    transition:.7s ease
}
.reveal.is-visible {
    opacity:1;
    transform:none
}
.lightbox {
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.86);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:200;
    padding:24px
}
.lightbox.is-open {
    display:flex
}
.lightboxBody {
    max-width:1050px;
    width:100%
}
.lightboxBody img,.lightboxBody video {
    width:100%;
    max-height:82vh;
    object-fit:contain;
    border-radius:18px
}
.lightboxClose {
    position:absolute;
    right:24px;
    top:24px;
    width:48px;
    height:48px;
    border-radius:50%;
    border:1px solid var(--line);
    background:#071522;
    color:#fff;
    font-size:30px;
    cursor:pointer
}

/******************************************************************************
  20 - Responsivo até 980px
******************************************************************************/

@media(max-width:980px) {
    .topShell {
        position:absolute;
        padding:18px
    }
    .brandMark img {
        width:48px;
        height:48px
    }
    .brandMark strong {
        font-size:20px
    }
    .brandMark small {
        font-size:8px
    }
    .backSite {
        font-size:12px;
        padding:8px 10px
    }
    .hero {
        min-height:auto;
        padding:110px 0 24px
    }
    .heroGrid {
        grid-template-columns:1fr;
        gap:10px
    }
    .hero h1 {
        font-size:43px;
        letter-spacing:-.06em
    }
    .lead {
        font-size:16px;
        margin-bottom:26px
    }
    .heroActions {
        display:grid;
        grid-template-columns:1fr;
        gap:12px
    }
    .btn {
        width:100%;
        min-height:60px
    }
    .heroDoctor {
        min-height:340px;
        margin-top:0;
        align-items:flex-end
    }
    .doctorImg {
        max-height:420px;
        object-fit:contain;
        object-position:center bottom
    }
    .doctorCard {
        left:50%;
        right:auto;
        bottom:0;
        transform:translateX(-50%);
        width:calc(100% - 28px);
        padding:14px
    }
    .doctorCard img {
        width:66px;
        height:66px
    }
    .doctorCard strong {
        font-size:17px
    }
    .trustBar {
        grid-template-columns:1fr 1fr;
        padding:10px;
        gap:0;
        margin-top:14px
    }
    .trustBar div {
        padding:16px 10px;
        border-right:0;
        border-bottom:1px solid rgba(255,255,255,.08);
        grid-template-columns:34px 1fr
    }
    .trustBar strong {
        font-size:18px
    }
    .trustBar small {
        font-size:12px
    }
    .lineIcon {
        width:34px;
        height:34px
    }
    .lineIcon svg {
        width:30px;
        height:30px
    }
    .videoIntroGrid,.whyGrid,.faqGrid,.bandBox {
        grid-template-columns:1fr
    }
    .videoFeature video {
        height:760px
    }
    .videoBadges {
        grid-template-columns:1fr
    }
    .caseGrid,.reviewGrid,.photoWall {
        grid-template-columns:1fr
    }
    .sectionRow {
        display:block
    }
    .whyCards {
        grid-template-columns:1fr
    }
    .whyCards article {
        border-right:0;
        border-bottom:1px solid var(--line)
    }
    .steps {
        grid-template-columns:1fr
    }
    .conversionBand {
        padding:28px 0 32px
    }
    .bandBox {
        padding:24px 20px
    }
    .finalCard {
        display:block;
        padding:28px 22px
    }
    .finalCard img {
        display:none
    }
    .waFloat {
        width:60px;
        height:60px;
        right:16px;
        bottom:16px
    }
    .waFloat svg {
        width:34px;
        height:34px
    }
}

/******************************************************************************
  21 - Responsivo até 520px
******************************************************************************/

@media(max-width:520px) {
    .container {
        width:min(100% - 28px,1180px)
    }
    .hero h1 {
        font-size:38px
    }
    .eyebrow,.kicker {
        font-size:11px;
        letter-spacing:.25em
    }
    .googleLine small {
        padding-left:0
    }
    .heroBg img {
        filter:saturate(.78) brightness(.24) contrast(1.08)
    }
    .heroBg img.is-active {
        opacity:.54
    }
    .heroOverlay {
        background:radial-gradient(circle at 55% 24%,rgba(100,216,255,.13),transparent 42%),linear-gradient(180deg,rgba(2,8,14,.85),rgba(2,8,14,.82) 45%,#02080e 96%),linear-gradient(90deg,rgba(2,8,14,.95),rgba(2,8,14,.6),rgba(2,8,14,.95))
    }
    .heroDoctor {
        min-height:318px
    }
    .doctorImg {
        max-height:390px
    }
    .caseCard img {
        height:320px
    }
    .photoWall img {
        height:420px
    }
    .bigPlay {
        width:78px;
        height:78px
    }
    .topShell {
        gap:10px
    }
    .backSite {
        max-width:160px;
        text-align:right;
        background:transparent
    }
    .brandMark span {
        display:none
    }
    .trustBar {
        display:none
    }
    .videoIntro {
        padding-top:24px
    }
}


/******************************************************************************
  22 - Ajustes manuais do mobile
******************************************************************************/

/* HERO MOBILE */
@media (max-width:768px) {
    .heroCopy {
        text-align:center;
        align-items:center;
    }
    .heroCopy .kicker {
        justify-content:center;
        text-align:center;
    }
    .heroCopy h1 {
        text-align:center;
        margin-left:auto;
        margin-right:auto;
    }
    .heroCopy p {
        text-align:center;
        margin-left:auto;
        margin-right:auto;
    }
    .heroActions {
        justify-content:center;
    }
}
/* Avaliação Google */
@media (max-width:768px) {
    .googleLine {
        width:100%;
        justify-content:center;
        text-align:center;
        gap:8px;
    }
    .googleTop {
        display:flex;
        align-items:center;
        justify-content:center;
        gap:12px;
        width:100%;
    }
    .googleRating {
        display:flex;
        align-items:center;
        justify-content:center;
        gap:10px;
    }
    .googleLine img {
        width:34px;
        height:34px;
        flex:0 0 34px;
    }
    .stars {
        display:inline-flex;
        color:#ffd14a;
        letter-spacing:2px;
        font-size:17px;
        line-height:1;
        white-space:nowrap;
    }
    .googleLine strong {
        font-size:18px;
        line-height:1;
        white-space:nowrap;
    }
    .googleLine small {
        width:100%;
        padding-left:0;
        margin-top:8px;
        text-align:center;
        font-size:15px;
        color:#d8e5ec;
    }
}
/* Blocos antigos de doctorGoogle/verified removidos: o HTML atual usa .doctorName e .doctorRating. */
@media(max-width:520px) {
    .cases {
        padding-top: 0px;
    }
}
/* MOBILE */
@media (max-width:768px) {
    /* Centraliza praticamente todo o conteúdo */
  section,
  .container,
  .heroContent,
  .heroText,
  .whyCopy,
  .casesIntro,
  .conversionBand,
  .faqIntro,
  .resultsHeader {
        text-align:center;
    }
    /* Títulos */
  h1,h2,h3,h4,p,
  .kicker,
  .lead {
        text-align:center;
    }
    /* Botões */
  .btn,
  .heroActions,
  .ctaButtons {
        justify-content:center;
        margin-left:auto;
        margin-right:auto;
    }
    /* Cards */
  .card,
  .doctorCard,
  .featureCard,
  .resultCard {
        text-align:center;
    }
    /* Ícones */
  .featureIcon,
  .doctorPhoto,
  .googleRating {
        margin-left:auto;
        margin-right:auto;
    }
}
@media (max-width:768px) {
    .btnResultados {
        display: none;
    }
}

/******************************************************************************
  23 - Ajustes finais dos botões WhatsApp
******************************************************************************/

/* Todos os botões verdes */
.btnWa {
    color: #fff !important;
}
.btnWa b,
.btnWa small,
.btnWa span {
    color: #fff !important;
}
/* Ícone WhatsApp */
.btnWa .whatsMini {
    color: #fff !important;
}
.btnWa .whatsMini svg {
    width: 22px;
    height: 22px;
    color: #fff !important;
    fill: currentColor;
}
.btnWa .whatsMini path {
    fill: currentColor !important;
}

/******************************************************************************
  24 - Pulsação dos CTAs
******************************************************************************/

/* Animação */
@keyframes ctaPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 12px 28px rgba(37,211,102,.18);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 18px 40px rgba(37,211,102,.35);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 12px 28px rgba(37,211,102,.18);
    }
}
/* Todos os botões verdes */
.btnWa {
    animation: ctaPulse 2.4s ease-in-out infinite;
    transition: transform .25s ease, box-shadow .25s ease;
    will-change: transform;
}
/* Quando o usuário passa o mouse */
.btnWa:hover {
    animation-play-state: paused;
    transform: scale(1.05);
}
@keyframes waIcon {
    0%,100% {
        transform: rotate(0deg);
    }
    15% {
        transform: rotate(-10deg);
    }
    30% {
        transform: rotate(10deg);
    }
    45% {
        transform: rotate(-6deg);
    }
    60% {
        transform: rotate(6deg);
    }
    75% {
        transform: rotate(0deg);
    }
}
.btnWa .whatsMini {
    animation: waIcon 2.4s infinite;
}
@media (max-width:768px) {
    .whyCards {
        display: none;
    }
}
@media (max-width:768px) {
    .process {
        padding-top: 0 !important;
    }
    .process.sectionPad {
        padding-top: 20px !important;
    }
}

@media (max-width: 520px) {
  .conversionBand {
    padding-top: 18px;
    padding-bottom: 26px;
  }

  .bandBox {
    padding: 24px 18px;
  }

  .bandBox h2 {
    margin-bottom: 18px;
  }

  .bandBox p {
    margin-bottom: 26px;
  }
}

/* Esconder texto do Hero */

.mobileLead{
    display:none;
}

@media (max-width:768px){

    .desktopLead{
        display:none;
    }

    .mobileLead{
        display:block;
        text-align:center;
        margin:18px 0 18px;
        font-size:17px;
        line-height:1.5;
        color:#d7e2ea;
    }

}

/* Botão de agendamento abaixo do card no mobile */

@media (max-width:768px){

    .heroGrid{
        display:flex;
        flex-direction:column;
    }

    .heroCopy{
        display:contents;
    }

    .heroDoctor{
        order:2;
    }

    .heroMobileCTA{
        order:3;
        margin-top:24px;
        margin-bottom:10px;
        width:100%;
    }

    .heroMobileCTA .btn{
        width:100%;
        justify-content:center;
    }

}

@media(max-width:520px){

  .heroDoctor{
    min-height:430px;
    padding-bottom:105px;
  }

  .doctorCard{
    bottom:18px;
    width:calc(100vw - 42px);
    max-width:430px;
    padding:18px 20px;
    border-radius:26px;
  }

  .heroMobileCTA{
    margin-top:18px;
  }

}

.giftPopup{
  position:fixed;
  inset:0;
  z-index:300;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(10px);
}

.giftPopup.is-open{
  display:flex;
}

.giftBox{
  position:relative;
  width:min(100%,420px);
  padding:34px 26px;
  border-radius:26px;
  text-align:center;
  background:linear-gradient(180deg,#102233,#06111d);
  border:1px solid rgba(215,189,131,.35);
  box-shadow:0 30px 90px rgba(0,0,0,.5);
}

.giftBox h3{
  font-size:28px;
  line-height:1.1;
  margin:14px 0 22px;
}

.giftPrize{
  margin:0 auto 24px;
  padding:18px;
  border-radius:18px;
  color:#fff;
  font-weight:900;
  font-size:22px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
}

.giftClose{
  position:absolute;
  top:14px;
  right:14px;
  width:36px;
  height:36px;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.1);
  color:#fff;
  font-size:24px;
  cursor:pointer;
}

.indications {
  background: linear-gradient(180deg, #02080e, #030b12);
   padding-bottom: 28px !important;
}

.indicationsBox {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 42px;
  background: rgba(255,255,255,.035);
}

.indicationGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.indicationGrid div {
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
  font-weight: 800;
  color: #fff;
}

.indicationGrid div::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  margin-right: 8px;
}

.indicationCta {
  margin-top: 30px;
  text-align: center;
}

.indicationCta p {
  color: var(--muted);
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .indicationsBox {
    padding: 30px 18px;
  }

  .indicationGrid {
    grid-template-columns: 1fr;
  }
}

/* Sessão de preço */
.priceOffer {
  background: linear-gradient(180deg, #030b12, #02080e);
  padding-top: 36px;
  padding-bottom: 42px;
}

.priceBox {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 38px 28px;
  border-radius: 24px;
  border: 1px solid rgba(215,189,131,.35);
  background:
    radial-gradient(circle at 50% 0%, rgba(215,189,131,.16), transparent 42%),
    rgba(255,255,255,.035);
}

.priceBox h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  margin: 14px 0;
}

.priceBox p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 24px;
}

.priceHighlight {
  margin: 26px auto;
  padding: 24px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.priceHighlight small {
  display: block;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}

.priceHighlight strong {
  display: block;
  margin: 8px 0;
  font-size: clamp(38px, 7vw, 64px);
  line-height: 1;
  color: var(--gold);
  font-weight: 900;
}

.priceHighlight span {
  display: block;
  color: #fff;
  font-weight: 800;
}

.priceBox em {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

@media (max-width: 768px) {
  .priceOffer {
    padding-top: 22px;
    padding-bottom: 28px;
  }

  .priceBox {
    padding: 30px 18px;
  }

  .priceHighlight strong {
    font-size: 42px;
  }
}

/* ===============================
   HERO DESKTOP PREMIUM
================================ */
@media (min-width: 1200px) {
  .hero {
    min-height: 900px;
    padding-top: 120px;
    padding-bottom: 70px;
  }

  .hero .container {
    width: min(92vw, 1680px);
    max-width: 1680px;
  }

  .heroGrid {
    grid-template-columns: minmax(560px, 760px) minmax(560px, 760px);
    gap: clamp(90px, 8vw, 170px);
    justify-content: space-between;
    align-items: center;
  }

  .heroCopy {
    max-width: 760px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(72px, 5.4vw, 104px);
    line-height: .9;
    letter-spacing: -0.07em;
  }

  .lead {
    max-width: 650px;
    font-size: 21px;
    line-height: 1.55;
  }

  .heroDoctor {
    min-height: 660px;
    justify-content: center;
    transform: translateX(30px);
  }

  .doctorImg {
    max-height: 760px;
    width: auto;
  }

  .doctorCard {
    width: 620px;
    bottom: -18px;
  }

  .trustBar {
    width: min(92vw, 1680px);
    max-width: 1680px;
    margin-top: 56px;
    margin-left: auto;
    margin-right: auto;
    padding: 26px 34px;
  }

  .trustBar div {
    padding: 0 34px;
  }

  .trustBar strong {
    font-size: 30px;
  }
}

/* ===========================
   Popup de cupom - Implantes
=========================== */

.promoOverlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(2, 8, 14, .8);
  backdrop-filter: blur(10px);
}

.promoOverlay.is-open {
  display: flex;
}

.promoModal {
  position: relative;
  width: min(460px, 100%);
  padding: 42px 34px;
  border-radius: 28px;
  text-align: center;
  background: linear-gradient(180deg, rgba(13, 27, 40, .96), rgba(4, 13, 22, .98));
  border: 1px solid rgba(215, 189, 131, .3);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .55), inset 0 1px 0 rgba(255, 255, 255, .06);
  backdrop-filter: blur(18px);
  animation: promoIn .35s ease;
}

.promoClose {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.promoKicker {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(215, 189, 131, .12);
  border: 1px solid rgba(215, 189, 131, .35);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 11.5px;
  font-weight: 900;
  margin-bottom: 14px;
}

.promoModal h2 {
  font-size: clamp(24px, 4vw, 30px);
  line-height: 1.08;
  letter-spacing: -.6px;
  color: #fff;
  margin-bottom: 12px;
}

.promoModal p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
}

.promoModal p strong {
  color: var(--cyan);
}

.promoTimer {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(215, 189, 131, .12);
  border: 1px solid rgba(215, 189, 131, .35);
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 20px;
}

.promoGift {
  width: 100%;
  max-width: 260px;
  margin: 0 auto 12px;
  cursor: pointer;
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg, #2ce878, #1fc45e);
  color: #06210f;
  border: 0;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .3);
  transition: transform .2s, box-shadow .2s;
  animation: ctaPulse 2.4s ease-in-out infinite;
}

.promoGift:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(37, 211, 102, .42);
}

.promoGift span {
  font-size: 20px;
  line-height: 1;
}

.promoReveal {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(215, 189, 131, .28);
  margin-bottom: 16px;
}

.promoReveal small {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 700;
}

.promoReveal > strong {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 14px;
  background: rgba(0, 0, 0, .35);
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.promoOptions {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: #fff;
  font-weight: 700;
  text-align: left;
  padding: 0 8px;
}

.promoWhatsapp {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2ce878, #1fc45e);
  color: #06210f;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(37, 211, 102, .32);
  animation: ctaPulse 2.4s ease-in-out infinite;
}

.promoNo {
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

@keyframes promoIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media(max-width:520px) {
  .promoModal {
    padding: 34px 22px;
  }
}