/* Dr. Fernando Martini — Agência Wood. Fonte da verdade do visual. */
/* Fontes self-hosted (variáveis: um arquivo cobre toda a faixa de peso).
   Exatamente as 5 famílias que o site em WordPress carrega. */
@font-face { font-family:'Inter Tight'; font-style:normal; font-weight:100 900; font-display:swap; src:url(fonts/inter-tight-400.woff2) format('woff2'); }
@font-face { font-family:'Sora';        font-style:normal; font-weight:100 800; font-display:swap; src:url(fonts/sora-400.woff2) format('woff2'); }
@font-face { font-family:'Vollkorn';    font-style:normal; font-weight:400 900; font-display:swap; src:url(fonts/vollkorn-400.woff2) format('woff2'); }
@font-face { font-family:'Inter';       font-style:normal; font-weight:100 900; font-display:swap; src:url(fonts/inter-400.woff2) format('woff2'); }
@font-face { font-family:'Raleway';     font-style:normal; font-weight:100 900; font-display:swap; src:url(fonts/raleway-500.woff2) format('woff2'); }

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    :root {
      /* cores amostradas do site em produção */
      --navy:        #0d1a2a;   /* fundo do body, cards de tratamento, footer */
      --navy-2:      #172234;   /* seções alternadas e cards de localização */
      --gold:        #c9a96e;   /* eyebrows, números, bordas, botão primário */
      --text:        #c0cbda;   /* corpo de texto */
      --muted:       #8092a8;   /* links secundários */
      --nav-link:    #adbccf;
      --nav-active:  #cea770;
      --icon:        #908c77;   /* ícones de feature (verde-oliva acinzentado) */
      --bd-gold:     rgba(201,169,110,0.25);
      --bd-card:     #2c3746;
      --ghost:       #202930;   /* número fantasma nos cards de tratamento */
      --ghost-2:     #373d45;   /* número fantasma em "por que escolher" */
      --wa:          #2cbb62;   /* verde dos botões "Agendar via WhatsApp" */
      --display:     'Inter Tight', -apple-system, system-ui, sans-serif;
      --inter:       'Inter', -apple-system, system-ui, sans-serif;
      --serif:       'Vollkorn', Georgia, 'Times New Roman', serif;
      --sans:        'Sora', -apple-system, system-ui, sans-serif;
      --raleway:     'Raleway', -apple-system, system-ui, sans-serif;
      --max-w:       1280px;
    }

    body {
      font-family: var(--sans);
      font-size: 17px;
      line-height: 1.55;
      color: var(--text);
      background: var(--navy);
      -webkit-font-smoothing: antialiased;
    }
    /* height:auto é obrigatório: com width/height no HTML, sem ele a imagem
       encolhe só na largura e distorce quando o container é menor que o arquivo */
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; }

    .skip-link {
      position: absolute; left: -9999px; top: 0; z-index: 200;
      background: var(--gold); color: var(--navy); padding: 12px 20px;
      font-family: var(--sans); font-size: 14px; font-weight: 600;
    }
    .skip-link:focus { left: 0; }
    :focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 10px; width: 100%; }
    .cols-2 { display: flex; }
    .cols-2 > * { flex: 1 1 50%; min-width: 0; }

    /* eyebrow dourado (Sora 12/500, ls 1.2) — repete em toda a página */
    .eyebrow {
      font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 1.2px;
      color: var(--gold); text-transform: uppercase; line-height: 1;
    }
    /* título de seção (50px, peso 300, tracking negativo) */
    .sec-title {
      font-family: var(--inter); font-size: 50px; font-weight: 300; letter-spacing: -1.1px;
      color: #fff; line-height: 1.1;
    }
    /* as duas primeiras seções usam Inter Tight; o resto usa Inter (é assim no site do ar) */
    .sec-title--tight { font-family: var(--display); }
    .sec-sub { font-family: var(--sans); font-size: 17px; line-height: 26px; color: var(--text); font-weight: 400; }
    /* .corx / .corx2 do original: o trecho dourado dentro dos títulos */
    .corx  { color: var(--gold); font-weight: 700; }
    .corx2 { color: var(--gold); font-weight: 500; }

    .ico { flex-shrink: 0; fill: currentColor; display: block; }
    /* moldura quadrada dos ícones (view "framed" do Elementor: 1px sólido #2c3746) */
    .ico-box {
      display: inline-flex; align-items: center; justify-content: center;
      border: 1px solid var(--bd-card); flex-shrink: 0;
    }
    .ico-box--sm { width: 43px; height: 44px; }
    .ico-box--md { width: 48px; height: 42px; }

    /* ——— NAV ——— */
    .nav {
      position: fixed; inset: 0 0 auto 0; z-index: 100; height: 67px;
      background: rgba(18,31,45,0.57);
      backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    }
    .nav__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 10px; height: 67px; display: flex; align-items: center; justify-content: space-between; }
    .nav__logo { font-family: var(--display); font-size: 21px; font-weight: 300; letter-spacing: 0.5px; text-transform: uppercase; color: #fff; line-height: 1; }
    .nav__logo span { color: var(--gold); font-weight: 700; }
    .nav__menu { display: flex; align-items: center; list-style: none; }
    .nav__menu a {
      display: block; padding: 13px 25px;
      font-family: var(--sans); font-size: 11px; font-weight: 300; letter-spacing: 2.7px;
      text-transform: uppercase; color: var(--nav-link); transition: color .2s;
    }
    .nav__menu a:hover, .nav__menu a.is-active { color: var(--nav-active); }
    .nav__cta {
      border: 2px solid var(--gold); color: var(--gold); border-radius: 0;
      padding: 10px 26px 9px; font-family: var(--sans); font-size: 13px; font-weight: 500;
      white-space: nowrap; transition: background .2s, color .2s;
    }
    .nav__cta:hover { background: var(--gold); color: var(--navy); }
    .nav__burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
    .nav__burger span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; }

    /* ——— BOTÕES ——— */
    .btn-gold {
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      background: var(--gold); color: var(--navy); border-radius: 0;
      min-width: 253px; height: 44px; padding: 0 24px;
      font-family: var(--sans); font-size: 13px; font-weight: 600; text-transform: uppercase;
      transition: background .2s;
    }
    .btn-gold, .btn-wa, .nav__cta { transition: all .3s; }
    .btn-txt { display: inline-block; transform: scale(1); transition: .5s ease all; }
    .btn-gold:hover .btn-txt, .btn-wa:hover .btn-txt, .nav__cta:hover .btn-txt { transform: scale(1.03); }
    .btn-gold:hover { background: #d8bb85; }
    .btn-gold .ico { width: 20px; height: 20px; }
    .btn-link {
      display: inline-flex; align-items: center; gap: 8px; padding: 10px 0;
      font-family: var(--sans); font-size: 12px; font-weight: 400; color: var(--muted);
      transition: color .2s;
    }
    .btn-link:hover { color: #fff; }
    .btn-link .ico { width: 12px; height: 12px; }
    .btn-link--gold { color: var(--gold); }
    .btn-link--gold:hover { color: #e2c491; }
    .btn-wa {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--wa); color: #fff; border-radius: 3px; padding: 17px 36px;
      font-family: var(--sans); font-size: 15px; font-weight: 600; line-height: 1;
      transition: background .2s;
    }
    .btn-wa:hover { background: #25a555; }
    .btn-wa .ico { width: 15px; height: 15px; }

    /* ——— HERO ——— */
    .hero {
      height: 1040px; position: relative; display: flex; align-items: center;
      background: url(bg2.webp) center/cover no-repeat var(--navy);
      padding: 0 10px;
    }
    .hero__inner { max-width: var(--max-w); margin: 0 auto; width: 100%; display: flex; align-items: center; }
    .hero__left { flex: 0 0 630px; max-width: 630px; padding-bottom: 186px; }
    .hero__right {
      flex: 0 0 630px; max-width: 630px; align-self: stretch;
      display: flex; flex-direction: column; align-items: flex-end; justify-content: center;
      gap: 20px; margin-top: -21px;
    }
    .hero__badge {
      display: inline-flex; align-items: center; gap: 10px;
      border: 1px solid var(--bd-gold); padding: 15px; height: 40px;
      font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 1.6px;
      color: var(--gold); text-transform: uppercase; line-height: 1;
    }
    .hero__badge .ico { width: 7px; height: 7px; color: var(--gold); }
    .hero__title {
      font-family: var(--display); font-size: 53px; font-weight: 300; letter-spacing: -1.3px;
      line-height: 1.12; color: #fff; margin: 20px 0 0;
    }
    .hero__title span { color: var(--gold); }
    .hero__sub { font-family: var(--sans); font-size: 17px; line-height: 26px; color: var(--text); max-width: 560px; }
    .hero__actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; margin-top: 34px; }
    .hero__card {
      width: 190px; height: 118px; padding: 20px;
      background: rgba(13,26,42,0.61);
      backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
      border: 1px solid var(--bd-gold);
      display: flex; flex-direction: column; justify-content: center; gap: 4px;
    }
    .hero__card-label { font-family: var(--sans); font-size: 11px; font-weight: 500; color: var(--gold); text-transform: uppercase; line-height: 1.4; }
    .hero__card-value { font-family: var(--serif); font-size: 31px; font-weight: 300; letter-spacing: -1.1px; color: #fff; line-height: 1.2; }
    .hero__card-note { font-family: var(--sans); font-size: 11px; font-weight: 500; color: var(--text); line-height: 1.4; }

    /* ——— BARRA DE NÚMEROS (sobrepõe o fim do hero) ——— */
    .stats { position: relative; z-index: 2; margin-top: -130px; padding: 0 10px; }
    .stats__inner { max-width: var(--max-w); margin: 0 auto; min-height: 164px; display: flex; align-items: center; }
    /* cada número é uma caixa de 250px com filete embaixo (igual ao original) */
    .stat { flex: 1 1 25%; display: flex; justify-content: center; }
    .stat__box {
      width: 250px; max-width: 100%; display: flex; flex-direction: column; align-items: center; gap: 5px;
      text-align: center; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.12);
    }
    .stat__value { font-family: var(--serif); font-size: 41px; font-weight: 300; letter-spacing: -1.1px; color: var(--gold); line-height: 1; display: inline-flex; align-items: center; gap: 10px; }
    .stat__value .ico { width: 23px; height: 23px; }
    .stat__label { font-family: var(--sans); font-size: 13px; font-weight: 400; color: var(--text); }

    /* ——— O MÉDICO ——— */
    .medico { padding: 55px 10px 55px; }
    .medico__inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; gap: 20px; }
    /* a foto do Sobre fica no tamanho natural (609px), não esticada na coluna */
    .medico__photo { flex: 0 0 630px; max-width: 630px; }
    .medico__photo img { width: 609px; max-width: 100%; height: auto; }
    .medico__content { flex: 0 0 630px; max-width: 630px; }
    .medico__name {
      font-family: var(--display); font-size: 50px; font-weight: 300; letter-spacing: -1.1px;
      text-transform: uppercase; color: #fff; line-height: 1.1; margin: 18px 0 26px;
    }
    .medico__content p { font-family: var(--sans); font-size: 16px; line-height: 27px; color: var(--text); margin-bottom: 18px; }
    /* credenciais em 2 colunas, como no site em produção */
    .feats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 30px; margin-top: 34px; }
    .feat { display: flex; align-items: flex-start; gap: 16px; margin-top: 22px; }
    .feat .ico { width: 21px; height: 21px; color: var(--icon); }
    .feat .ico-box { margin-top: 2px; }
    .feat h3 { font-family: var(--sans); font-size: 16px; font-weight: 600; color: #fff; line-height: 1.4; }
    .feat p { font-family: var(--sans); font-size: 14px; line-height: 22px; color: var(--text); margin: 2px 0 0; }

    /* ——— TRATAMENTOS ——— */
    .tratamentos { background: var(--navy-2); padding: 90px 10px 100px; }
    .tratamentos__inner { max-width: var(--max-w); margin: 0 auto; }
    .sec-head { max-width: 630px; }
    .sec-head .sec-title { margin: 22px 0 20px; }
    .trat__grid { display: flex; gap: 22px; margin-top: 54px; }
    .trat-card { flex: 1 1 50%; min-width: 0; background: var(--navy); padding: 50px 30px; display: flex; flex-direction: column; }
    /* topo do card: ícone à esquerda, número fantasma à direita */
    .trat-card__top { display: flex; align-items: center; justify-content: space-between; }
    .trat-card__num { font-family: var(--serif); font-size: 66px; font-weight: 400; color: var(--ghost); line-height: 1; order: 2; }
    .trat-card__top .ico { width: 22px; height: 22px; color: var(--icon); }
    .trat-card__top .ico-box { order: 1; }
    .trat-card__title { font-family: var(--serif); font-size: 30px; font-weight: 400; letter-spacing: 0.4px; color: #fff; line-height: 1.3; margin: 12px 0 18px; }
    .trat-card p { font-family: var(--sans); font-size: 15px; line-height: 25px; color: var(--text); margin-bottom: 14px; }
    .chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 12px 0 26px; }
    .chip {
      border: 1px solid var(--bd-gold); padding: 10px;
      font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 1.2px;
      color: var(--gold); text-transform: uppercase; line-height: 1;
    }
    .trat-card .btn-gold { margin-top: auto; align-self: flex-start; }

    /* ——— POR QUE ESCOLHER ——— */
    .porque { background: var(--navy-2); padding: 90px 10px 100px; }
    .porque__inner { max-width: var(--max-w); margin: 0 auto; }
    .porque__grid { display: flex; gap: 20px; margin-top: 50px; }
    .porque-card { flex: 1 1 33.333%; min-width: 0; border: 1px solid var(--bd-card); padding: 20px; min-height: 259px; display: flex; flex-direction: column; }
    /* título à esquerda, número fantasma à direita, alinhados pelo topo */
    .porque-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
    .porque-card h3 { font-family: var(--serif); font-size: 24px; font-weight: 600; color: #fff; line-height: 1.3; }
    .porque-card__num { font-family: var(--serif); font-size: 55px; font-weight: 600; color: var(--ghost-2); line-height: 1; flex-shrink: 0; }
    .porque-card p { font-family: var(--sans); font-size: 15px; line-height: 25px; color: var(--text); }

    /* ——— A CLÍNICA (galeria) ——— */
    .clinica { padding: 90px 10px 100px; }
    .clinica__inner { max-width: var(--max-w); margin: 0 auto; }
    .galeria { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin-top: 50px; }
    .galeria a { display: block; overflow: hidden; background: var(--navy-2); }
    /* a galeria do original renderiza os quadros praticamente quadrados (417x428) */
    .galeria img { width: 100%; height: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .5s ease, opacity .3s; }
    .galeria a:hover img { transform: scale(1.04); opacity: .85; }

    /* ——— LOCALIZAÇÃO ——— */
    /* foto da sala de espera sangrada como fundo da seção (bgcontato.webp no original) */
    .local {
      padding: 90px 10px 100px; position: relative;
      background: url(bgcontato.webp) center center/cover no-repeat var(--navy);
    }
    .local::before {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background: linear-gradient(90deg, var(--navy) 0%, rgba(13,26,42,0.92) 42%, rgba(13,26,42,0.35) 72%, rgba(13,26,42,0.15) 100%);
    }
    .local__inner { max-width: var(--max-w); margin: 0 auto; display: flex; gap: 20px; align-items: flex-start; position: relative; z-index: 1; }
    /* coluna esquerda: título + cards; a direita fica livre para a foto do fundo aparecer */
    .local__left { flex: 0 0 630px; max-width: 630px; display: flex; flex-direction: column; gap: 20px; }
    .local__right { flex: 1 1 auto; }
    .local__title { margin: 22px 0 8px; }
    .card-box { background: var(--navy-2); border: 1px solid var(--bd-card); padding: 30px; }
    .card-box h3 { font-family: var(--serif); font-size: 18px; font-weight: 600; color: #fff; line-height: 1.4; margin: 14px 0 16px; }
    .card-row { display: flex; align-items: flex-start; gap: 14px; }
    .card-row .ico { width: 22px; height: 22px; color: var(--icon); }
    .card-row p { font-family: var(--sans); font-size: 15px; line-height: 25px; color: var(--text); }
    .horarios { display: flex; gap: 50px; margin-top: 14px; }
    .horarios h3 { margin: 0 0 4px; }
    .horarios p { font-family: var(--sans); font-size: 15px; color: var(--text); }

    /* ——— CTA FINAL ——— */
    .cta { background: var(--navy-2); padding: 90px 10px 100px; text-align: center; }
    .cta__inner { max-width: var(--max-w); margin: 0 auto; }
    .cta__title { margin: 22px auto 0; max-width: 900px; }
    .cta__body {
      max-width: 1101px; margin: 44px auto 0; display: flex; align-items: center; gap: 60px; text-align: left;
      background: var(--navy); border: 1px solid var(--bd-card); padding: 50px;
    }
    .cta__text { flex: 1 1 auto; }
    .cta__text p { font-family: var(--sans); font-size: 17px; line-height: 27px; color: var(--text); margin-bottom: 30px; }
    .cta__actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
    .cta__insta { display: inline-flex; align-items: center; gap: 9px; font-family: var(--sans); font-size: 14px; color: var(--muted); transition: color .2s; }
    .cta__insta:hover { color: #fff; }
    .cta__insta .ico { width: 16px; height: 16px; }
    .cta__note { display: block; margin-top: 26px; font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 0.1px; color: var(--gold); text-transform: uppercase; }
    .cta__img { flex: 0 0 489px; max-width: 489px; }

    /* ——— FOOTER ——— */
    .footer { background: var(--navy); padding: 80px 10px 100px; }
    .footer__inner { max-width: var(--max-w); margin: 0 auto; }
    .footer__cols { display: flex; gap: 60px; }
    .footer__brand { flex: 1 1 46%; }
    .footer__logo { font-family: var(--display); font-size: 29px; font-weight: 300; letter-spacing: 0.5px; text-transform: uppercase; color: #fff; line-height: 1.2; }
    .footer__logo span { color: var(--gold); font-weight: 700; }
    .footer__desc { font-family: var(--raleway); font-size: 14px; font-weight: 500; line-height: 24px; color: #fff; margin-top: 18px; max-width: 470px; }
    .footer__col { flex: 1 1 27%; }
    .footer__col h3 { font-family: var(--serif); font-size: 28px; font-weight: 400; color: #fff; line-height: 1.2; margin-bottom: 20px; }
    .footer__col a, .footer__col p { display: flex; align-items: center; gap: 9px; font-family: var(--sans); font-size: 14px; color: var(--muted); margin-bottom: 12px; transition: color .2s; }
    .footer__col a:hover { color: var(--gold); }
    .footer__col .ico { width: 16px; height: 16px; }
    .footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 60px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.08); }
    .footer__copy { font-family: var(--sans); font-size: 13px; color: #8a95a3; line-height: 1.7; }
    .footer__dev { display: flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: 13px; color: #8a95a3; white-space: nowrap; }
    .footer__dev a { color: var(--gold); font-weight: 600; }

    /* ——— WHATSAPP FLUTUANTE ——— */
    .wpp-float {
      position: fixed; right: 24px; bottom: 24px; z-index: 99;
      width: 62px; height: 62px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      background: var(--wa); color: #fff;
      box-shadow: 0 8px 24px rgba(44,187,98,0.35);
      transition: transform .2s, background .2s;
    }
    .wpp-float:hover { background: #25a555; transform: scale(1.06); }
    .wpp-float .ico { width: 39px; height: 39px; }

    /* ——— RESPONSIVO ——— */
    @media (max-width: 1100px) {
      .hero__left, .hero__right, .medico__photo, .medico__content, .local__left, .local__right { flex-basis: 50%; }
      .sec-title, .medico__name, .hero__title { font-size: 40px; letter-spacing: -0.8px; }
      .hero__title { font-size: 42px; }
    }
    @media (max-width: 1024px) {
      .nav__menu, .nav__cta { display: none; }
      .nav__burger { display: block; }
      .nav__menu.is-open {
        display: flex; flex-direction: column; align-items: stretch;
        position: absolute; top: 67px; left: 0; right: 0;
        background: var(--navy); border-top: 1px solid rgba(255,255,255,0.08); padding: 10px 0;
      }
      .hero { height: auto; padding: 130px 10px 70px; background-image: url(bgmb.webp); background-position: center bottom; }
      .stats { margin-top: 0; }
      .hero__inner { flex-direction: column; align-items: flex-start; }
      .hero__left, .hero__right { flex: 1 1 auto; max-width: 100%; width: 100%; }
      .hero__right { justify-content: flex-start; padding: 40px 0 0; }
      .stats { margin-top: 0; padding-top: 10px; }
      .stats__inner { flex-wrap: wrap; height: auto; padding: 30px 0; gap: 30px 0; }
      .stat { flex: 1 1 50%; }
      .medico__inner, .local__inner, .cta__body { flex-direction: column; }
      .medico__photo, .medico__content, .local__left, .local__right { flex: 1 1 auto; max-width: 100%; width: 100%; }
      .medico__photo { max-width: 480px; margin: 0 auto 40px; }
      .feats { grid-template-columns: 1fr; }
      .trat__grid, .porque__grid { flex-direction: column; }
      .galeria { grid-template-columns: repeat(2, 1fr); gap: 10px; }
      .local { background-image: url(bgctamb.webp); background-position: bottom center; }
      .local::before { background: linear-gradient(180deg, var(--navy) 0%, rgba(13,26,42,0.92) 55%, rgba(13,26,42,0.35) 100%); }
      .cta__body { text-align: center; gap: 40px; padding: 34px 24px; }
      .cta__actions { justify-content: center; }
      .cta__img { flex: 1 1 auto; max-width: 420px; margin: 0 auto; }
      .footer__cols { flex-direction: column; gap: 40px; }
    }
    /* Mobile: medidas conferidas no site em produção a 375px */
    @media (max-width: 767px) {
      /* no mobile o original usa 20px de respiro lateral e seções mais curtas */
      .container, .nav__inner, .hero, .stats, .medico, .tratamentos, .clinica, .porque, .local, .cta, .footer { padding-left: 20px; padding-right: 20px; }
      .medico, .tratamentos, .clinica, .porque, .local, .cta { padding-top: 58px; padding-bottom: 62px; }
      .footer { padding-top: 58px; padding-bottom: 70px; }
      .nav, .nav__inner { height: 54px; }
      .nav__logo { font-size: 24px; }

      /* hero: badge oculto, tudo centralizado, cards colados no rodapé da seção */
      .hero { height: auto; min-height: 799px; padding: 90px 20px 26px; flex-direction: column; justify-content: space-between; }
      .hero__inner { flex-direction: column; height: 100%; flex: 1 1 auto; justify-content: space-between; }
      .hero__badge { display: none; }
      .hero__left { text-align: center; padding-top: 0; }
      .hero__title { font-size: 27px; line-height: 1.24; margin: 0 0 18px; }
      .hero__sub { font-size: 15px; line-height: 24px; margin: 0 auto; }
      .hero__actions { flex-direction: column; align-items: center; gap: 6px; margin-top: 26px; }
      .hero__right { flex-direction: row; justify-content: center; align-items: flex-end; padding: 0; gap: 12px; margin-top: 0; }
      .hero__card { width: 162px; height: 105px; padding: 14px; }
      .hero__card-label { font-size: 9px; }
      .hero__card-value { font-size: 24px; }
      .hero__card-note { font-size: 10px; }

      /* números: empilhados, valor maior que no desktop */
      .stats { padding-top: 20px; }
      .stats__inner { flex-direction: column; min-height: 0; gap: 20px; padding: 16px 0; }
      .stat { flex: 1 1 auto; width: 100%; }
      .stat__value { font-size: 50px; }

      /* títulos centralizados no mobile */
      .sec-head, .sec-head .sec-sub, .cta__note { text-align: center; }
      .sec-title { font-size: 34px; }
      .medico__name { font-size: 29px; text-align: center; }
      .medico__content { text-align: center; }
      .medico__content .eyebrow { display: block; text-align: center; }
      .feat { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
      .feat h3 { font-size: 16px; }

      .trat-card { padding: 34px 22px; align-items: center; text-align: center; }
      .trat-card__top { width: 100%; }
      .trat-card__num { font-size: 42px; }
      .trat-card__title { font-size: 26px; }
      .chips { justify-content: center; }
      .trat-card .btn-gold { align-self: center; }

      /* galeria: 1 coluna, quadros deitados (335x251 no original) */
      .galeria { grid-template-columns: 1fr; gap: 10px; }
      .galeria img { aspect-ratio: 4/3; }

      .porque-card__top { gap: 10px; }
      .porque-card h3 { font-size: 24px; }
      /* no mobile a foto da sala de espera aparece abaixo dos cards (bgctamb.webp) */
      .local { padding-bottom: 400px; }
      .local__left { text-align: center; }
      .card-box { text-align: left; }
      .horarios { flex-direction: column; gap: 18px; }
      .btn-gold { min-width: 237px; height: 54px; font-size: 14px; padding: 12px 20px; }
      .btn-wa { align-self: center; }
      .cta__body { gap: 28px; }
      .footer__bottom { flex-direction: column; align-items: flex-start; }
    }

/* ============================================================
   COMPONENTES DAS LPs (camada de conversão Wood)
   Mesma linguagem do clone: cantos retos, eyebrow dourado,
   Vollkorn nos títulos de card, alternância navy / navy-2.
   ============================================================ */

/* ——— BREADCRUMB ——— */
.breadcrumb {
  position: absolute; top: 84px; left: 0; right: 0; z-index: 3;
  padding: 0 10px; pointer-events: none;
}
.breadcrumb a, .breadcrumb span { pointer-events: auto; }
.breadcrumb__inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb a, .breadcrumb span {
  font-family: var(--sans); font-size: 12px; font-weight: 400; color: var(--muted);
  letter-spacing: 0.4px;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep { color: var(--bd-card); }
.breadcrumb [aria-current] { color: var(--gold); }

/* ——— EMPATIA (framework PAS: problema, agitação, solução) ——— */
.empatia { background: var(--navy-2); padding: 90px 10px 100px; }
.empatia__inner { max-width: var(--max-w); margin: 0 auto; display: flex; gap: 60px; align-items: flex-start; }
.empatia__texto { flex: 1 1 58%; min-width: 0; }
.empatia__texto .sec-title { margin: 22px 0 26px; }
.empatia__texto p { font-family: var(--sans); font-size: 17px; line-height: 29px; color: var(--text); margin-bottom: 18px; }
.empatia__texto strong { color: #fff; font-weight: 600; }
.empatia__lista { flex: 1 1 42%; min-width: 0; display: flex; flex-direction: column; gap: 0; }
.empatia__item {
  display: flex; align-items: flex-start; gap: 16px;
  border: 1px solid var(--bd-card); border-bottom: none; padding: 22px 24px;
}
.empatia__item:last-child { border-bottom: 1px solid var(--bd-card); }
.empatia__item .ico { width: 18px; height: 18px; color: var(--gold); margin-top: 4px; }
.empatia__item p { font-family: var(--sans); font-size: 15px; line-height: 25px; color: var(--text); margin: 0; }
.empatia__item strong { color: #fff; font-weight: 600; }

/* ——— COMO FUNCIONA (4 passos) ——— */
.passos { padding: 90px 10px 100px; }
.passos__inner { max-width: var(--max-w); margin: 0 auto; }
.passos__grid { display: flex; gap: 20px; margin-top: 50px; }
.passo {
  flex: 1 1 25%; min-width: 0; border: 1px solid var(--bd-card); padding: 28px 24px 30px;
  display: flex; flex-direction: column;
}
.passo__num {
  font-family: var(--serif); font-size: 40px; font-weight: 600; color: var(--gold);
  line-height: 1; margin-bottom: 16px;
}
.passo h3 { font-family: var(--serif); font-size: 19px; font-weight: 600; color: #fff; line-height: 1.35; margin-bottom: 10px; }
.passo p { font-family: var(--sans); font-size: 14px; line-height: 24px; color: var(--text); }
.passos__nota {
  margin: 40px auto 0; max-width: 860px; display: flex; align-items: flex-start; gap: 16px;
  border: 1px solid var(--bd-gold); padding: 22px 26px;
}
.passos__nota .ico { width: 20px; height: 20px; color: var(--gold); margin-top: 3px; }
.passos__nota p { font-family: var(--sans); font-size: 15px; line-height: 25px; color: var(--text); margin: 0; }
.passos__nota strong { color: #fff; font-weight: 600; }

/* ——— FAQ ——— */
.faq { background: var(--navy-2); padding: 90px 10px 100px; }
.faq__inner { max-width: var(--max-w); margin: 0 auto; }
.faq__lista { max-width: 920px; margin: 46px 0 0; }
.faq-item { border-bottom: 1px solid var(--bd-card); }
.faq-item:first-child { border-top: 1px solid var(--bd-card); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px 0; cursor: pointer; list-style: none;
  font-family: var(--serif); font-size: 19px; font-weight: 600; color: #fff; line-height: 1.4;
  transition: color .2s;
}
.faq-item summary:hover { color: var(--gold); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__sinal {
  position: relative; width: 16px; height: 16px; flex-shrink: 0;
}
.faq-item__sinal::before, .faq-item__sinal::after {
  content: ''; position: absolute; background: var(--gold); transition: transform .25s ease;
}
.faq-item__sinal::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-item__sinal::after  { left: 7px; top: 0; width: 2px; height: 16px; }
.faq-item[open] .faq-item__sinal::after { transform: scaleY(0); }
.faq-item__corpo { padding: 0 0 26px; max-width: 780px; }
.faq-item__corpo p { font-family: var(--sans); font-size: 15px; line-height: 27px; color: var(--text); }
.faq-item__corpo p + p { margin-top: 14px; }
.faq-item__corpo strong { color: #fff; font-weight: 600; }

/* ——— BLOCO "SOBRE" RESUMIDO NAS LPs ——— */
.mini-sobre { padding: 90px 10px 100px; }
.mini-sobre__inner { max-width: var(--max-w); margin: 0 auto; display: flex; gap: 60px; align-items: center; }
.mini-sobre__foto { flex: 0 0 420px; max-width: 420px; }
.mini-sobre__txt { flex: 1 1 auto; min-width: 0; }
.mini-sobre__txt .medico__name { font-size: 38px; margin: 18px 0 22px; }
.mini-sobre__txt p { font-family: var(--sans); font-size: 16px; line-height: 27px; color: var(--text); margin-bottom: 18px; }
.mini-sobre__txt strong { color: #fff; font-weight: 600; }

/* ——— AVISO DE COMPLIANCE ——— */
.aviso-medico {
  max-width: var(--max-w); margin: 0 auto; padding: 26px 10px 0;
}
.aviso-medico p {
  font-family: var(--sans); font-size: 12.5px; line-height: 22px; color: #8a95a3;
  border-left: 2px solid var(--bd-gold); padding-left: 16px; max-width: 860px;
}

/* ——— RESPONSIVO DOS COMPONENTES NOVOS ——— */
@media (max-width: 1024px) {
  .empatia__inner, .mini-sobre__inner { flex-direction: column; gap: 40px; }
  .empatia__texto, .empatia__lista, .mini-sobre__foto, .mini-sobre__txt { flex: 1 1 auto; max-width: 100%; width: 100%; }
  .mini-sobre__foto { max-width: 420px; margin: 0 auto; }
  .passos__grid { flex-wrap: wrap; }
  .passo { flex: 1 1 calc(50% - 10px); }
}
@media (max-width: 767px) {
  .breadcrumb { position: static; padding: 74px 20px 0; }
  .empatia, .passos, .faq, .mini-sobre { padding-top: 58px; padding-bottom: 62px; padding-left: 20px; padding-right: 20px; }
  .passos__grid { flex-direction: column; }
  .passo { flex: 1 1 auto; }
  .empatia__texto, .passos__inner .sec-head, .faq__inner .sec-head { text-align: center; }
  .faq-item summary { font-size: 17px; gap: 16px; }
  .faq-item__corpo p { font-size: 15px; }
  .mini-sobre__txt { text-align: center; }
  .mini-sobre__txt .medico__name { font-size: 28px; }
  .aviso-medico { padding-left: 20px; padding-right: 20px; }
}

/* ——— HERO DAS LPs ——— */
/* mais curto que o da home (tem breadcrumb acima) e com respiro entre H1 e subtítulo,
   já que o H1 das LPs tem 2 linhas em vez de 3 */
/* O hero da LP é o MESMO da home: 1040px e enquadramento central.
   Altura menor com background-size:cover obriga a sacrificar topo ou base da
   foto (cabeça ou pés). Mantendo a altura da home, o enquadramento é idêntico
   e o breadcrumb flutua por cima em vez de empurrar o conteúdo. */
.hero--lp { height: 1040px; }
.hero--lp .hero__left { padding-bottom: 214px; }
.hero--lp .hero__title { font-size: 47px; margin: 20px 0 18px; }
@media (max-width: 1100px) { .hero--lp .hero__title { font-size: 38px; } }
@media (max-width: 767px) {
  .hero--lp { height: auto; min-height: 760px; padding: 16px 20px 26px; }
  .hero--lp .hero__left { padding-bottom: 0; }
  .hero--lp .hero__title { font-size: 27px; margin: 0 0 18px; }
}
@media (max-width: 767px) { .faq__lista { margin-left: auto; margin-right: auto; } }

/* ——— PÁGINA DE OBRIGADO ——— */
.obrigado {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 40px 20px; position: relative;
  background: url(bg2.webp) center center/cover no-repeat var(--navy);
}
.obrigado::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,26,42,0.90) 0%, rgba(13,26,42,0.82) 100%);
}
.obrigado__card {
  position: relative; z-index: 1; width: 100%; max-width: 520px; text-align: center;
  background: rgba(13,26,42,0.72); border: 1px solid var(--bd-gold);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 48px 40px 40px;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.obrigado__check {
  width: 68px; height: 68px; border: 1px solid var(--wa); color: var(--wa);
  display: flex; align-items: center; justify-content: center; margin-bottom: 26px;
  animation: obrigadoPop .45s ease;
}
.obrigado__check svg { width: 32px; height: 32px; }
@keyframes obrigadoPop { from { transform: scale(.7); opacity: 0 } to { transform: scale(1); opacity: 1 } }
.obrigado__titulo {
  font-family: var(--display); font-size: 34px; font-weight: 300; letter-spacing: -0.8px;
  color: #fff; line-height: 1.2; margin: 14px 0 16px;
}
.obrigado__txt { font-family: var(--sans); font-size: 15px; line-height: 26px; color: var(--text); max-width: 400px; }
.obrigado__dots { display: flex; gap: 7px; margin: 26px 0 30px; }
.obrigado__dots span {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  animation: obrigadoBlink 1.2s infinite;
}
.obrigado__dots span:nth-child(2) { animation-delay: .2s }
.obrigado__dots span:nth-child(3) { animation-delay: .4s }
@keyframes obrigadoBlink { 0%,60%,100% { opacity: .22 } 30% { opacity: 1 } }
.obrigado__card .btn-wa { width: 100%; justify-content: center; }
.obrigado__card .btn-link { margin-top: 6px; }
.obrigado__marca {
  font-family: var(--display); font-size: 15px; font-weight: 300; letter-spacing: 0.5px;
  text-transform: uppercase; color: #6d7885; margin-top: 26px;
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.08); width: 100%;
}
@media (max-width: 620px) {
  .obrigado__card { padding: 36px 24px 30px; }
  .obrigado__titulo { font-size: 27px; }
}
