/* ── Nav ── */
    .site-nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: .9rem 3rem;
      background: rgba(245,240,232,.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--areia);
    }
    .is-dark .site-nav { background: rgba(26,21,18,.92); }
    .nav-nome {
      font-family: var(--f-display);
      font-size: 1.1rem;
      font-weight: 400;
      letter-spacing: .04em;
      color: var(--mogno);
    }
    .nav-nome em { font-style: italic; color: var(--terracota); }
    .nav-cta {
      font-size: .72rem;
      font-weight: 500;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--terracota);
      border: 1px solid var(--terracota);
      padding: .5rem 1.2rem;
      transition: background .3s ease-in-out, color .3s ease-in-out;
    }
    .nav-cta:hover { background: var(--terracota); color: var(--branco); }
    @media (max-width: 600px) {
      .site-nav { padding: .75rem 1.25rem; }
      .nav-nome { font-size: .95rem; }
      .nav-cta { display: none; }
    }

    /* ── Tokens ── */
    :root {
      --creme:    #f5f0e8;
      --areia:    #e8ddc8;
      --terracota:#b5704a;
      --argila:   #8c5a3c;
      --mogno:    #4a2e1a;
      --cinza:    #7a6e65;
      --branco:   #faf8f4;
      --sombra:   rgba(74,46,26,.10);

      --f-display: 'Cormorant Garamond', Georgia, serif;
      --f-body:    'Jost', sans-serif;

      /* Tokens semânticos (usados pelos componentes) */
      --bg-page:      var(--creme);
      --bg-section:   var(--branco);
      --bg-alt:       var(--areia);
      --text-primary: var(--mogno);
      --text-muted:   var(--cinza);
      --border:       var(--areia);
    }

    /* ── Dark Mode (Lógica manual via classe .is-dark) ── */
    .is-dark {
      --creme:    #1a1512;
      --areia:    #2a211a;
      --terracota:#cc8055;
      --argila:   #b5704a;
      --mogno:    #f0e6d8;
      --cinza:    #a89080;
      --branco:   #231d18;
      --sombra:   rgba(0,0,0,.35);

      --bg-page:      #1a1512;
      --bg-section:   #231d18;
      --bg-alt:       #2a211a;
      --text-primary: #f0e6d8;
      --text-muted:   #a89080;
      --border:       #3a2d22;
    }
    /* Suporte a navegadores para color-scheme */
    @media (prefers-color-scheme: dark) {
      html { color-scheme: dark; }
    }


    /* ── Reset ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--creme);
      color: var(--mogno);
      font-family: var(--f-body);
      font-weight: 300;
      line-height: 1.7;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a  { color: inherit; text-decoration: none; }

    /* ── Grain overlay ── */
    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 999; opacity: .5;
    }

    /* ── Utilidades ── */
    .container { max-width: 1120px; margin: 0 auto; padding: 0 2rem; }
    
    @media (max-width: 768px) {
      .container { padding: 0 1.25rem; }
      section { padding: 4rem 0 !important; }
    }
    .tag {
      display: inline-block;
      font-family: var(--f-body);
      font-size: .68rem;
      font-weight: 500;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--terracota);
    }

    /* ════════════════════════════
       HERO
    ════════════════════════════ */
    #hero {
      min-height: 100svh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      overflow: hidden;
    }

    /* Coluna esquerda: texto */
    .hero-texto {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 6rem 4rem 6rem 6rem;
      gap: 2rem;
      position: relative;
      z-index: 2;
    }

    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 40px; height: 1px;
      background: var(--terracota);
    }

    .hero-nome {
      font-family: var(--f-display);
      font-weight: 300;
      font-size: clamp(2.2rem, 8vw, 4.4rem);
      line-height: 1.08;
      letter-spacing: -.01em;
    }
    .hero-nome em {
      font-style: italic;
      color: var(--terracota);
    }

    .hero-especialidade {
      font-size: .9rem;
      letter-spacing: .08em;
      color: var(--cinza);
      text-transform: uppercase;
      font-weight: 400;
    }

    .hero-desc {
      font-size: 1.05rem;
      color: var(--cinza);
      max-width: 38ch;
      border-left: 2px solid var(--areia);
      padding-left: 1.2rem;
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: .8rem;
      background: var(--terracota);
      color: var(--branco);
      font-family: var(--f-body);
      font-size: .85rem;
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 1rem 2rem;
      border: none;
      cursor: pointer;
      transition: background .25s, transform .2s;
      align-self: flex-start;
    }
    .hero-cta:hover { background: var(--argila); transform: translateY(-2px); }
    .hero-cta svg { width: 18px; height: 18px; fill: currentColor; }

    .hero-credenciais {
      display: flex;
      flex-direction: column;
      gap: .4rem;
      margin-top: .5rem;
    }
    .hero-credenciais span {
      font-size: .78rem;
      color: var(--cinza);
      display: flex;
      align-items: center;
      gap: .5rem;
    }
    .hero-credenciais span::before {
      content: '◆';
      color: var(--terracota);
      font-size: .5rem;
    }

    .hero-redes {
      display: flex;
      gap: 1.2rem;
      margin-top: .5rem;
    }
    .redes-link {
      color: var(--cinza);
      transition: color .2s, transform .2s;
      display: flex;
      align-items: center;
    }
    .redes-link:hover {
      color: var(--terracota);
      transform: translateY(-2px);
    }
    .redes-link svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
    }

    /* Coluna direita: foto */
    .hero-foto {
      position: relative;
      overflow: hidden;
      background: var(--areia);
    }
    .hero-foto img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center top;
      transition: transform 8s ease;
    }
    .hero-foto:hover img { transform: scale(1.03); }

    /* placeholder quando não há foto */
    .foto-placeholder {
      width: 100%; height: 100%;
      min-height: 500px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      color: var(--cinza);
      font-size: .85rem;
      text-align: center;
      padding: 2rem;
      background: linear-gradient(160deg, var(--areia) 0%, #d9ccb8 100%);
    }
    .foto-placeholder svg { width: 48px; opacity: .35; }

    .hero-foto-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, var(--creme) 0%, transparent 18%);
      pointer-events: none;
    }

    /* Linha decorativa diagonal */
    #hero::after {
      content: '';
      position: absolute;
      top: -10%; left: 48%;
      width: 2px; height: 120%;
      background: var(--areia);
      transform: rotate(2deg);
      pointer-events: none;
    }

    /* ════════════════════════════
       SOBRE
    ════════════════════════════ */
    #sobre {
      padding: 7rem 0;
      background: var(--branco);
    }
    .sobre-grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 5rem;
      align-items: start;
    }
    .sobre-lateral {
      position: sticky;
      top: 5rem;
    }
    .sobre-numero {
      font-family: var(--f-display);
      font-size: 7rem;
      font-weight: 300;
      color: var(--areia);
      line-height: 1;
      margin-bottom: -1.5rem;
    }
    .sobre-titulo {
      font-family: var(--f-display);
      font-size: 2.2rem;
      font-weight: 400;
      line-height: 1.2;
    }
    .sobre-titulo em { font-style: italic; color: var(--terracota); }

    .sobre-conteudo p {
      font-size: 1.05rem;
      color: var(--cinza);
      margin-bottom: 1.4rem;
    }
    .sobre-conteudo strong { color: var(--mogno); font-weight: 500; }

    .sobre-badges {
      display: flex;
      flex-wrap: wrap;
      gap: .75rem;
      margin-top: 2.5rem;
    }
    .badge {
      background: var(--areia);
      color: var(--mogno);
      font-size: .75rem;
      font-weight: 500;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: .5rem 1rem;
      border-radius: 2px;
    }

    /* ════════════════════════════
       PROCEDIMENTOS
    ════════════════════════════ */
    #procedimentos {
      padding: 7rem 0;
      background: var(--creme);
      position: relative;
      overflow: hidden;
    }
    #procedimentos::before {
      content: 'PROCEDIMENTOS';
      position: absolute;
      top: 3rem; right: -1rem;
      font-family: var(--f-display);
      font-size: 9rem;
      font-weight: 300;
      color: var(--areia);
      opacity: .5;
      pointer-events: none;
      white-space: nowrap;
      letter-spacing: -.02em;
      z-index: 0;
    }
    .secao-cabecalho, .procedimentos-lista { position: relative; z-index: 1; }

    .secao-cabecalho {
      margin-bottom: 4rem;
    }
    .secao-titulo {
      font-family: var(--f-display);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 400;
      line-height: 1.15;
      margin-top: .5rem;
    }
    .secao-titulo em { font-style: italic; color: var(--terracota); }

    .procedimentos-lista {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5px;
      background: var(--areia);
      border: 1.5px solid var(--areia);
    }
    .proc-item {
      background: var(--branco);
      padding: 2.2rem 2rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      transition: background .25s;
      cursor: default;
    }
    .proc-item:hover { background: var(--creme); }

    .proc-num {
      font-family: var(--f-display);
      font-size: 2.5rem;
      font-weight: 300;
      color: var(--areia);
      line-height: 1;
    }
    .proc-nome {
      font-family: var(--f-display);
      font-size: 1.3rem;
      font-weight: 600;
      line-height: 1.2;
    }
    .proc-desc {
      font-size: .88rem;
      color: var(--cinza);
      line-height: 1.65;
    }
    .proc-linha {
      width: 32px; height: 1.5px;
      background: var(--terracota);
      margin-top: auto;
    }

    /* ════════════════════════════
       AGENDAMENTO
    ════════════════════════════ */
    #agendamento {
      padding: 7rem 0;
      background: var(--mogno);
      position: relative;
      overflow: hidden;
    }
    #agendamento::before {
      content: '';
      position: absolute;
      bottom: -60px; right: -60px;
      width: 380px; height: 380px;
      border-radius: 50%;
      border: 60px solid rgba(255,255,255,.04);
      pointer-events: none;
    }
    #agendamento::after {
      content: '';
      position: absolute;
      top: -80px; left: -80px;
      width: 300px; height: 300px;
      border-radius: 50%;
      border: 40px solid rgba(255,255,255,.04);
      pointer-events: none;
    }

    .agendamento-simples {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 2rem;
      max-width: 480px;
      margin: 0 auto;
    }
    .btn-whatsapp-lg {
      font-size: 1rem;
      padding: 1.3rem 3rem;
    }
    .agendamento-texto .tag { color: var(--areia); }
    .agendamento-titulo {
      font-family: var(--f-display);
      font-size: clamp(2.4rem, 4vw, 3.4rem);
      font-weight: 300;
      color: var(--branco);
      line-height: 1.1;
      margin: .75rem 0 1.5rem;
    }
    .agendamento-titulo em { font-style: italic; color: var(--terracota); }
    .agendamento-desc {
      color: rgba(250,248,244,.65);
      font-size: 1rem;
      max-width: 38ch;
    }

    .agendamento-cartao {
      background: rgba(250,248,244,.06);
      border: 1px solid rgba(250,248,244,.12);
      padding: 2.5rem;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
    .agendamento-info {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }
    .info-linha {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      color: rgba(250,248,244,.8);
      font-size: .92rem;
    }
    .info-icone {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: rgba(181,112,74,.25);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .info-icone svg { width: 16px; height: 16px; fill: var(--terracota); }
    .info-label { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--terracota); display: block; margin-bottom: .15rem; }

    .btn-whatsapp {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .75rem;
      background: var(--terracota);
      color: var(--branco);
      font-family: var(--f-body);
      font-size: .85rem;
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 1.1rem 2rem;
      border: none;
      cursor: pointer;
      transition: background .25s, transform .2s;
      width: 100%;
      text-align: center;
    }
    .btn-whatsapp:hover { background: var(--argila); transform: translateY(-2px); }
    .btn-whatsapp svg { width: 20px; height: 20px; fill: currentColor; }

    /* ════════════════════════════
       RODAPÉ
    ════════════════════════════ */
    .footer-redes {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .footer-redes .redes-link {
      color: var(--mogno);
      opacity: 0.6;
    }
    .footer-redes .redes-link:hover {
      opacity: 1;
      color: var(--terracota);
    }

    footer {
      background: var(--creme);
      border-top: 1px solid var(--areia);
      padding: 2.5rem 0;
      text-align: center;
    }
    footer p {
      font-size: .78rem;
      color: var(--cinza);
      letter-spacing: .04em;
    }


    .sobre-foto-flutuante {
      float: right;
      width: 220px;
      height: 280px;
      object-fit: cover;
      object-position: center top;
      margin: 0 0 1.5rem 2rem;
      border-radius: 2px;
      box-shadow: 8px 8px 0 var(--areia);
    }
    @media (max-width: 600px) {
      .sobre-foto-flutuante { float: none; width: 100%; height: 260px; margin: 0 0 1.5rem 0; }
    }


    /* ════════════════════════════
       LOCAIS
    ════════════════════════════ */
    #locais {
      padding: 7rem 0;
      background: var(--branco);
    }
    .locais-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: var(--areia);
      border: 1.5px solid var(--areia);
    }
    .local-item {
      background: var(--creme);
      padding: 2.5rem 2rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      transition: background .25s;
    }
    .local-destaque {
      background: var(--branco);
      position: relative;
    }
    .local-destaque::before {
      content: 'Rererência em Plástica ocular';
      position: absolute;
      top: 1.2rem; right: 1.2rem;
      font-size: .62rem;
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--terracota);
      border: 1px solid var(--terracota);
      padding: .25rem .6rem;
    }
    .local-num {
      font-family: var(--f-display);
      font-size: 2.5rem;
      font-weight: 300;
      color: var(--areia);
      line-height: 1;
    }
    .local-nome {
      font-family: var(--f-display);
      font-size: 1.2rem;
      font-weight: 600;
      line-height: 1.25;
    }
    .local-endereco {
      font-size: .84rem;
      color: var(--cinza);
      line-height: 1.6;
    }
    .local-badge {
      display: inline-block;
      font-size: .68rem;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: .3rem .8rem;
      background: var(--areia);
      color: var(--mogno);
      align-self: flex-start;
    }
    .local-badge-misto {
      background: rgba(181,112,74,.15);
      color: var(--terracota);
    }
    .local-cta {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      margin-top: auto;
      font-size: .78rem;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--terracota);
      transition: color .2s;
    }
    .local-cta svg { width: 16px; height: 16px; fill: currentColor; }
    .local-cta:hover { color: var(--argila); }
    @media (max-width: 900px) {
      .locais-grid, .procedimentos-lista { grid-template-columns: 1fr; }
    }

    /* ════════════════════════════
       ANIMAÇÕES & LOGO
    ════════════════════════════ */
    .footer-logo {
      width: 140px;
      height: 140px;
      margin: 0 auto 2rem;
      display: block;
      opacity: 0.95;
      transition: opacity .3s, transform .5s;
    }
    .footer-logo:hover {
      opacity: 1;
      transform: scale(1.05);
    }
    
    .sobre-stamp {
      width: 150px;
      height: 150px;
      margin-bottom: 2rem;
      display: block;
      animation: rotateStamp 35s linear infinite;
    }
    
    @keyframes rotateStamp {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-texto > * {
      animation: fadeUp .8s ease both;
    }
    .hero-texto > *:nth-child(1) { animation-delay: .1s; }
    .hero-texto > *:nth-child(2) { animation-delay: .22s; }
    .hero-texto > *:nth-child(3) { animation-delay: .32s; }
    .hero-texto > *:nth-child(4) { animation-delay: .42s; }
    .hero-texto > *:nth-child(5) { animation-delay: .52s; }
    .hero-texto > *:nth-child(6) { animation-delay: .62s; }

    /* ════════════════════════════
       RESPONSIVO
    ════════════════════════════ */
    @media (max-width: 900px) {
      #hero { grid-template-columns: 1fr; min-height: auto; }
      #hero::after { display: none; }
      .hero-texto { padding: 5rem 1.5rem 3rem; align-items: center; text-align: center; }
      .hero-eyebrow { justify-content: center; }
      .hero-desc { border-left: none; border-top: 2px solid var(--areia); padding: 1.2rem 0 0; text-align: center; max-width: 100%; }
      .hero-cta { align-self: center; width: 100%; justify-content: center; }
      .hero-redes { justify-content: center; }
      .hero-foto { min-height: 450px; }
      .hero-foto-overlay { background: linear-gradient(to bottom, transparent 60%, var(--creme) 100%); }
      
      .sobre-grid { grid-template-columns: 1fr; gap: 3rem; }
      .sobre-lateral { position: static; text-align: center; }
      .sobre-numero { font-size: 5rem; margin-bottom: -1rem; }
      .sobre-conteudo { text-align: left; }
      
      .sobre-foto-flutuante {
        float: none;
        display: block;
        margin: 0 auto 2.5rem;
        width: 100%;
        max-width: 320px;
        height: auto;
        box-shadow: 15px 15px 0 var(--areia);
      }
      
      #procedimentos::before { font-size: 4.5rem; top: 1.5rem; opacity: 0.5; }
      .secao-cabecalho { text-align: center; margin-bottom: 2.5rem; }
      
      .agendamento-simples { padding: 0 1rem; }
    }

    @media (max-width: 600px) {
      .hero-nome { font-size: 2.5rem; }
      #procedimentos::before { display: none; }
      .proc-item { padding: 1.8rem 1.5rem; }
      .local-item { padding: 2rem 1.5rem; }
      .agendamento-titulo { font-size: 2.2rem; }
      footer p { font-size: 0.7rem; line-height: 1.4; }
    }

    /* Floating WhatsApp Button for better mobile UX */
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 60px;
      height: 60px;
      background-color: #25d366;
      color: #FFF;
      border-radius: 50px;
      text-align: center;
      font-size: 30px;
      box-shadow: 2px 2px 3px #999;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: transform 0.3s ease;
    }
    .whatsapp-float:hover { transform: scale(1.1); color: #FFF; }
    .whatsapp-float svg { width: 32px; height: 32px; fill: currentColor; }


    /* ════════════════════════════
       SUBPÁGINAS DE PROCEDIMENTOS
    ════════════════════════════ */
    .hero-sub {
      padding: 6rem 0 4rem;
      background: var(--branco);
      border-bottom: 2px solid var(--areia);
      text-align: center;
    }
    .hero-sub .tag { margin-bottom: 1rem; }
    .hero-sub h1 { 
      font-family: var(--f-display); 
      font-size: clamp(2.2rem, 8vw, 3.8rem); 
      font-weight: 300;
      color: var(--mogno);
    }
    .hero-sub h1 em { font-style: italic; color: var(--terracota); }

    .conteudo-procedimento {
      padding: 5rem 0;
      background: var(--creme);
    }
    .grid-procedimento {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 5rem;
      align-items: start;
    }
    .texto-proc p { 
      margin-bottom: 1.5rem; 
      font-size: 1.1rem; 
      line-height: 1.8; 
      color: var(--cinza);
    }
    .texto-proc ul {
      margin: 0 0 2.5rem 2rem;
      list-style-position: outside;
    }
    .texto-proc li {
      font-size: 1.1rem;
      line-height: 1.8;
      color: var(--cinza);
      margin-bottom: .8rem;
      padding-left: .5rem;
    }
    .texto-proc strong { color: var(--mogno); font-weight: 500; }
    .texto-proc h2 { 
      font-family: var(--f-display); 
      font-size: 2rem; 
      margin-bottom: 1.5rem; 
      color: var(--mogno);
      font-weight: 400;
    }

    .img-proc-placeholder {
      background: var(--areia);
      width: 100%;
      aspect-ratio: 4/5;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: sticky;
      top: 5rem;
      gap: 1rem;
      color: var(--cinza);
      border-radius: 2px;
      overflow: hidden;
    }
    .img-proc-placeholder span { font-size: .85rem; opacity: .7; }
    .img-proc-placeholder svg { width: 48px; opacity: .3; }

    .btn-voltar {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      font-size: .8rem;
      text-transform: uppercase;
      letter-spacing: .15em;
      margin-bottom: 2.5rem;
      color: var(--cinza);
      font-weight: 500;
    }
    .btn-voltar:hover { color: var(--terracota); }
    .btn-voltar svg { width: 18px; transform: scaleX(-1); fill: currentColor; }

    .cta-proc {
      margin-top: 3rem;
      padding: 2.5rem;
      background: var(--branco);
      border: 1px solid var(--areia);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }
    .cta-proc p { margin-bottom: 0; font-size: 1rem; }

    @media (max-width: 900px) {
      .grid-procedimento { grid-template-columns: 1fr; gap: 4rem; }
      .img-proc-placeholder { position: static; aspect-ratio: 3/2; }
      .hero-sub { padding: 4rem 0; }
    }


    /* ════════════════════════════
       SEÇÃO PROBLEMA (PAS)
    ════════════════════════════ */
    #problema {
      padding: 6rem 0;
      background: var(--mogno);
    }
    .pas-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .pas-texto .tag { color: var(--areia); opacity: .7; }
    .pas-texto .secao-titulo { color: var(--branco); margin: 1rem 0 1.5rem; }
    .pas-texto .secao-titulo em { color: var(--terracota); }
    .pas-texto p { color: var(--areia); margin-bottom: 1rem; font-size: 1rem; line-height: 1.8; opacity: .85; }
    .pas-cards { display: flex; flex-direction: column; gap: 0; }
    .pas-card {
      display: grid;
      grid-template-columns: 3rem 1fr;
      gap: 1.2rem;
      align-items: start;
      padding: 1.5rem 0;
      border-bottom: 1px solid rgba(255,255,255,.08);
      transition: opacity .3s ease-in-out;
    }
    .pas-card:first-child { border-top: 1px solid rgba(255,255,255,.08); }
    .pas-cards:hover .pas-card { opacity: .5; }
    .pas-cards:hover .pas-card:hover { opacity: 1; }
    .pas-card-num {
      font-family: var(--f-display);
      font-size: 2rem;
      font-weight: 300;
      color: var(--terracota);
      line-height: 1;
      padding-top: .1rem;
    }
    .pas-card-body h3 {
      font-family: var(--f-display);
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--branco);
      margin-bottom: .3rem;
      line-height: 1.2;
    }
    .pas-card-body p { color: var(--areia); font-size: .88rem; margin-bottom: 0; opacity: .75; line-height: 1.65; }

    @media (max-width: 768px) {
      .pas-grid { grid-template-columns: 1fr; gap: 3rem; }
    }


    /* ════════════════════════════
       DEPOIMENTOS
    ════════════════════════════ */
    #depoimentos {
      padding: 6rem 0;
      background: var(--areia);
    }
    .depoimentos-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }
    .depoimento-card {
      background: var(--branco);
      padding: 2.5rem 2.2rem 2rem;
      display: flex;
      flex-direction: column;
      border-bottom: 3px solid transparent;
      border: 1px solid rgba(220, 203, 171, 0.4);
      transition: border-color .3s ease-in-out, transform .3s ease-in-out, box-shadow .3s ease-in-out;
    }
    .depoimento-card:hover {
      border-color: var(--terracota);
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(74, 46, 26, 0.04);
    }
    .depoimento-texto {
      font-family: var(--f-display);
      font-size: 1.15rem;
      font-style: italic;
      line-height: 1.6;
      color: var(--mogno);
      margin-bottom: 1.2rem;
      opacity: 0.9;
    }
    .proc-link-btn {
      margin-top: auto;
      align-self: flex-end;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--cinza);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: color 0.3s ease;
    }
    .proc-link-btn:hover {
      color: var(--terracota);
    }
    .proc-link-btn::after {
      content: '→';
      font-size: 1.1rem;
      line-height: 1;
      transform: translateY(-1px);
    }
    .depoimento-autor { display: flex; align-items: center; gap: .8rem; }
    .depoimento-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: var(--terracota);
      color: var(--branco);
      font-size: .85rem;
      font-weight: 500;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      overflow: hidden;
    }
    .depoimento-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .depoimento-nome { font-size: .85rem; font-weight: 500; color: var(--mogno); }
    .depoimento-proc { font-size: .75rem; color: var(--cinza); margin-top: .1rem; }

    @media (max-width: 900px) {
      .depoimentos-grid { grid-template-columns: 1fr; }
    }


    /* ════════════════════════════
       AGENDAMENTO (melhorado)
    ════════════════════════════ */
    .agendamento-sub {
      max-width: 44ch;
      text-align: center;
      color: var(--areia);
      font-size: .95rem;
      opacity: .8;
      margin-top: -.5rem;
    }

    /* ── Micro-interações globais aprimoradas ── */
    a, button { transition: color .3s ease-in-out, background .3s ease-in-out, transform .3s ease-in-out, border-color .3s ease-in-out, opacity .3s ease-in-out; }

    /* ── Hero nome novo (outcome-first) ── */
    .hero-nome { font-size: clamp(2rem, 6vw, 3.8rem); }
/* ════════════════════════════
   AUDIO PLAYER (WHATSAPP STYLE)
════════════════════════════ */
.wa-player-container {
  margin: 0.5rem 0 1.5rem 0;
  display: flex;
  justify-content: flex-start;
}

.conteudo-procedimento .wa-player-container {
  justify-content: center;
  margin: 2rem 0;
}

.wa-bubble {
  background: var(--branco);
  border-radius: 12px;
  padding: 8px 12px 10px 10px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 1px 2px var(--sombra);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  border: 1px solid var(--areia);
}

.wa-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-top: 4px;
  flex-shrink: 0;
}

.wa-play-btn {
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #54656f;
  transition: transform 0.1s;
}
.wa-play-btn:active { transform: scale(0.9); }
.wa-play-btn svg { width: 30px; height: 30px; fill: currentColor; }

.wa-speed-btn {
  background: #f0f2f5;
  border: none;
  border-radius: 10px;
  color: #54656f;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 5px;
  cursor: pointer;
  min-width: 28px;
}

.wa-avatar-wrap { position: relative; flex-shrink: 0; order: 3; margin-top: 2px; }

.wa-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.wa-mic-badge {
  position: absolute;
  left: -8px;
  bottom: 0px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #53bdeb;
}
.wa-mic-badge svg { width: 14px; height: 14px; fill: currentColor; }

.wa-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  order: 2;
  padding-top: 6px;
}

.wa-canvas {
  width: 100%;
  height: 32px;
  cursor: pointer;
  display: block;
}

.wa-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 2px;
}

.wa-elapsed { font-size: 11px; color: #667781; font-weight: 400; }
.wa-info-proc { font-size: 11px; color: #008069; font-weight: 500; opacity: 0.8; }
.wa-ts      { font-size: 10px; color: #667781; position: absolute; right: 12px; bottom: 6px; }
.wa-checks  { display: none; }

.wa-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.wa-play-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00a884;
  transition: transform 0.1s;
}
.wa-play-btn:active { transform: scale(0.9); }
.wa-play-btn svg { width: 34px; height: 34px; fill: currentColor; }

.wa-speed-btn {
  background: #f0f2f5;
  border: none;
  border-radius: 12px;
  color: #54656f;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  cursor: pointer;
  transition: background 0.2s;
  min-width: 32px;
}
.wa-speed-btn:hover { background: #e1e4e7; }

.is-dark .wa-bubble { background: #1e2428; border-color: #2a2f32; }
.is-dark .wa-mic-badge { border-color: #1e2428; }
.is-dark .wa-checks { color: #53bdeb; }
.is-dark .wa-speed-btn { background: #2a2f32; color: #a1b0b9; }
.is-dark .wa-speed-btn:hover { background: #373d41; }
