/* ── Nav (pill flutuante — padrão Mobbin) ── */
    /* Wrapper invisível: só ancora a pill, sem background */
    .site-nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      height: 0;
      overflow: visible;
      background: none;
      border: none;
      pointer-events: none;
    }

    /* A pill em si: flutua centralizada acima da página */
    .nav-shell {
      pointer-events: auto;
      position: absolute;
      top: 12px;
      left: 50%;
      transform: translateX(-50%);
      width: min(calc(100% - clamp(28px, 5vw, 48px)), 1120px);
      min-height: 66px;
      padding: 0 clamp(16px, 2.4vw, 26px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      border-radius: 24px;
      border: 1px solid rgba(181,112,74,0.16);
      background: rgba(245,240,232,0.86);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 8px 28px rgba(74,46,26,0.08);
      transition: background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    }
    .site-nav.scrolled .nav-shell {
      background: rgba(245,240,232,0.96);
      border-color: rgba(181,112,74,0.24);
      box-shadow: 0 12px 36px rgba(74,46,26,0.13);
    }
    .is-dark .nav-shell { background: rgba(26,21,18,0.90); }
    .is-dark.site-nav.scrolled .nav-shell,
    .is-dark .site-nav.scrolled .nav-shell { background: rgba(26,21,18,0.97); }

    .nav-nome {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-family: var(--f-display);
      font-size: 1.05rem;
      font-weight: 400;
      letter-spacing: .04em;
      color: var(--mogno);
      text-decoration: none;
      border-radius: 14px;
      transition: transform 0.24s cubic-bezier(0.16,1,0.3,1), opacity 0.22s ease;
      transform: translate3d(0,0,0);
    }
    .nav-nome:hover { transform: translate3d(0,-1px,0); }
    .nav-nome:active { transform: translate3d(0,0,0) scale(0.985); }
    .nav-nome img {
      height: 40px;
      width: 40px;
      border-radius: 50%;
      mix-blend-mode: multiply;
    }
    .nav-nome em { font-style: italic; color: var(--terracota); }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--branco);
      background: var(--terracota);
      border: none;
      border-radius: 50px;
      padding: .55rem 1.3rem;
      text-decoration: none;
      white-space: nowrap;
      transition: background 0.22s ease,
                  transform 0.24s cubic-bezier(0.16,1,0.3,1),
                  box-shadow 0.22s ease;
      box-shadow: 0 2px 10px rgba(181,112,74,0.32);
      transform: translate3d(0,0,0);
    }
    .nav-cta:hover {
      background: var(--argila);
      transform: translate3d(0,-2px,0);
      box-shadow: 0 4px 16px rgba(181,112,74,0.44);
    }
    .nav-cta:active { transform: translate3d(0,0,0) scale(0.985); }

    @media (max-width: 600px) {
      .nav-shell {
        top: 8px;
        min-height: 58px;
        padding: 0 clamp(12px, 3vw, 16px);
        border-radius: 18px;
      }
      .nav-nome { font-size: .92rem; }
      .nav-nome img { height: 34px; width: 34px; }
      .nav-cta { font-size: .62rem; padding: .45rem .9rem; letter-spacing: .08em; }
    }

    /* ── Tokens ── */
    :root {
      --creme:    #f5f0e8;
      --areia:    #e8ddc8;
      --terracota:#b5704a;
      --argila:   #8c5a3c;
      --mogno:    #4a2e1a;
      --cinza:    #5c534c;
      --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; overflow-x: hidden; }
    body {
      background: var(--creme);
      color: var(--mogno);
      font-family: var(--f-body);
      font-weight: 300;
      line-height: 1.7;
      overflow-x: hidden;
      max-width: 100%;
    }
    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-left: auto !important; 
      margin-right: auto !important; 
      padding: 0 2rem; 
      display: block;
      width: 100%;
    }
    
    @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: minmax(0, 1.08fr) minmax(0, 0.92fr);
      position: relative;
      overflow: hidden;
      width: min(calc(100% - clamp(28px, 5vw, 48px)), 1120px);
      margin: 0 auto;
    }
    #hero::before {
      content: '';
      position: absolute;
      top: -12%;
      left: 53.1%;
      width: 120px;
      height: 124%;
      background: linear-gradient(90deg, rgba(245,240,232,0) 0%, rgba(245,240,232,0.72) 52%, rgba(245,240,232,0) 100%);
      filter: blur(10px);
      transform: rotate(2deg);
      opacity: 0.7;
      pointer-events: none;
      z-index: 1;
    }

    /* Coluna esquerda: texto */
    .hero-texto {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      padding: 6.75rem 2.4rem 4rem 3.25rem;
      gap: 1.5rem;
      position: relative;
      z-index: 3;
      align-items: flex-start;
      transform: none;
    }

    .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.75rem, 4.15vw, 4rem);
      line-height: 1.02;
      letter-spacing: -0.018em;
      max-width: 10.9ch;
      text-wrap: balance;
    }
    .hero-nome em {
      font-style: italic;
      color: var(--terracota);
      line-height: 1.02;
    }

    .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: auto;
    }
    .hero-cta:hover { background: var(--argila); transform: translateY(-2px); }
    .hero-cta svg { width: 18px; height: 18px; fill: currentColor; }
    
    .hero-acoes {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
      align-self: flex-start;
      width: fit-content;
    }

    .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;
      justify-content: center;
      width: 100%;
    }
    .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); }
    .hero-foto::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(270deg, rgba(245,240,232,0.86) 0%, rgba(245,240,232,0.48) 8%, rgba(245,240,232,0.16) 18%, rgba(245,240,232,0.04) 28%, transparent 40%),
        radial-gradient(circle at 100% 12%, rgba(245,240,232,0.16) 0%, rgba(245,240,232,0.05) 20%, rgba(245,240,232,0) 46%);
      pointer-events: none;
      z-index: 1;
    }

    /* 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;
      z-index: 2;
    }

    /* Linha decorativa diagonal */
    #hero::after {
      content: '';
      position: absolute;
      top: -10%;
      left: 53.2%;
      width: 1px;
      height: 120%;
      background: rgba(232,221,200,0.96);
      box-shadow: 0 0 0 1px rgba(255,255,255,0.12), 0 0 22px rgba(245,240,232,0.28);
      transform: rotate(2deg);
      pointer-events: none;
      z-index: 2;
    }

    /* ════════════════════════════
       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: 0 0 7rem 0; /* Remove padding superior para o cabeçalho imersivo tocar o topo */
      background: var(--creme);
      position: relative;
      overflow: hidden;
    }
    /* ══ Estilo Base dos Cabeçalhos de Seção ══ */
    .secao-cabecalho {
      margin-bottom: 4rem;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }

    /* ══ Cabeçalho Imersivo (Apenas para Procedimentos) ══ */
    #procedimentos .secao-cabecalho {
      position: relative;
      background: url('../img/procedimento.webp') center/cover no-repeat;
      padding: 7rem 1rem; /* Mais respiro interno para protagonismo da imagem */
      margin-bottom: 2.5rem; /* Reduz espaço vazio entre cabeçalho e lista */
      overflow: hidden;
    }

    #procedimentos .secao-cabecalho::before {
      content: '';
      position: absolute;
      inset: 0;
      background-color: var(--creme);
      opacity: 0.85;
      z-index: 1;
    }

    #procedimentos .secao-cabecalho .container {
      position: relative;
      z-index: 2;
    }

    #procedimentos .secao-titulo {
      font-family: var(--f-display);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 300;
      line-height: 1.15;
      margin-top: .5rem;
    }

    /* Subtítulo elegante abaixo do título principal (apenas em procedimentos) */
    #procedimentos .secao-titulo em {
      color: var(--mogno);
      font-weight: 300;
      display: block;
      font-size: 0.75em;
      font-style: italic;
    }

    /* Estilo padrão para outros títulos de seção */
    .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: flex;
      flex-wrap: wrap;
      gap: 1.5px;
      background: var(--areia);
      border: 1.5px solid var(--areia);
    }
    .proc-item {
      flex: 1 1 300px;
      background: var(--branco);
      padding: 2.2rem 2rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      transition: all .3s ease;
      cursor: pointer;
      position: relative; /* Para o badge */
    }
    .proc-item:hover { background: var(--creme); transform: translateY(-3px); }

    /* Destaque para Blefaroplastia (Signature) */
    .proc-featured {
      background: linear-gradient(135deg, var(--branco) 0%, #fffcf8 100%);
      box-shadow: 0 15px 45px rgba(74, 46, 26, 0.08);
      border: 1px solid rgba(181, 112, 74, 0.2) !important;
      border-left: 3px solid var(--terracota) !important; /* Acento lateral de luxo */
      z-index: 5;
    }
    .proc-featured .proc-num { color: var(--terracota); font-weight: 500; opacity: 1; }
    .proc-featured .proc-nome { color: var(--mogno); font-size: 1.4rem; }

    .proc-badge {
      position: absolute;
      top: 1.8rem;
      right: 2rem;
      border: 1px solid rgba(181, 112, 74, 0.6);
      background: transparent;
      color: var(--terracota);
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      padding: 0.5rem 1.1rem;
      border-radius: 0;
      line-height: 1;
      text-transform: uppercase;
      pointer-events: none;
    }

    .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 2rem;
      text-align: center;
      transition: padding-bottom 0.35s ease;
    }
    body.has-cookie-banner footer {
      padding-bottom: 5.25rem;
    }
    @media (max-width: 768px) {
      footer {
        padding-bottom: 66px; /* Protege o rodapé da pilha reduzida no mobile */
      }
      body.has-cookie-banner footer {
        padding-bottom: 132px; /* Reserva a pilha reduzida + box sem esmagar o rodapé */
      }
      body.has-cookie-banner .floating-actions {
        bottom: calc(env(safe-area-inset-bottom, 0px) + 80px) !important;
        right: 10px !important;
        z-index: 1003;
      }
    }
    footer p {
      font-size: .78rem;
      color: var(--cinza);
      letter-spacing: .04em;
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }


    .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: 'Referê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; width: 100%; }
      #hero::before,
      #hero::after { display: none; }
      .hero-texto { padding: 5rem 1.5rem 3rem; align-items: flex-start; text-align: left; transform: none; }
      .hero-eyebrow { justify-content: flex-start; }
      .hero-nome { max-width: 12.5ch; }
      .hero-desc { border-left: none; border-top: 2px solid var(--areia); padding: 1.2rem 0 0; text-align: left; max-width: 100%; }
      .hero-cta { align-self: flex-start; width: auto; justify-content: center; }
      .hero-acoes { align-self: flex-start; width: 100%; align-items: flex-start; }
      .hero-redes { justify-content: flex-start; }
      .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);
      }
      
      .secao-cabecalho { text-align: center; margin-bottom: 2.5rem; }
      
      .agendamento-simples { padding: 0 1rem; }
    }

    @media (max-width: 600px) {
      .hero-texto { padding: 4.75rem 1rem 2.75rem; gap: 1.25rem; }
      .hero-eyebrow { gap: 0.75rem; }
      .hero-eyebrow::before { width: 32px; }
      .hero-nome { font-size: 2.45rem; line-height: 1.03; max-width: 100%; }
      .hero-nome br { display: none; }
      .hero-nome em { display: block; margin-top: 0.06em; }
      .hero-especialidade { font-size: 0.82rem; letter-spacing: 0.06em; }
      .hero-desc { font-size: 0.98rem; }
      .hero-cta { width: 100%; justify-content: center; }
      .hero-acoes { gap: 1.25rem; }
      .hero-redes { width: 100%; justify-content: center; }
      .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; }
    }

    /* ═══════════════════════════════════════
       BOTÕES FLUTUANTES (WhatsApp + Busca)
    ═══════════════════════════════════════ */
    .floating-actions {
      --floating-action-size: 126px;
      position: fixed;
      right: calc(clamp(16px, 2.4vw, 28px) + env(safe-area-inset-right, 0px));
      bottom: calc(clamp(18px, 2.6vw, 28px) + env(safe-area-inset-bottom, 0px));
      z-index: 1001;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 20px;
      pointer-events: none;
    }

    .floating-actions > * {
      pointer-events: auto;
      --btn-offset: 0px;
      --btn-squash: 0;
      transform: translate3d(0, var(--btn-offset), 0)
                 scaleX(calc(1 + var(--btn-squash)))
                 scaleY(calc(1 - var(--btn-squash)));
      transform-origin: center center;
      will-change: transform;
      backface-visibility: hidden;
    }

    /* Botão de busca */
    .search-float {
      width: var(--floating-action-size);
      height: var(--floating-action-size);
      border-radius: 50%;
      border: 1px solid rgba(74,46,26,0.14);
      background: rgba(250,248,244,0.94);
      color: var(--mogno);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 10px 24px rgba(74,46,26,0.12);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      transition: transform 0.24s cubic-bezier(0.34,1.56,0.64,1),
                  box-shadow 0.22s ease,
                  border-color 0.22s ease,
                  background 0.22s ease;
      will-change: transform;
    }
    .search-float:hover {
      transform: translate3d(0, -3px, 0);
      background: var(--branco);
      border-color: rgba(181,112,74,0.28);
      box-shadow: 0 16px 30px rgba(74,46,26,0.16);
    }
    .search-float:active { transform: translate3d(0,-1px,0) scale(0.975); }
    .search-float svg { width: 52px; height: 52px; }
    .search-float.is-active {
      background: var(--branco);
      border-color: rgba(181,112,74,0.32);
      box-shadow: 0 16px 30px rgba(74,46,26,0.16), 0 0 0 8px rgba(181,112,74,0.08);
    }
    .search-float:focus-visible {
      outline: 3px solid rgba(181,112,74,0.32);
      outline-offset: 3px;
    }

    /* Botão de WhatsApp (dentro do sistema de floating-actions) */
    .floating-actions .whatsapp-float {
      position: static;
      width: var(--floating-action-size);
      height: var(--floating-action-size);
      background-color: #25d366;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 24px rgba(37,211,102,0.32);
      text-decoration: none;
      transition: transform 0.24s cubic-bezier(0.34,1.56,0.64,1),
                  background-color 0.22s ease,
                  box-shadow 0.22s ease;
      animation: whatsapp-pulse 4.8s ease-in-out infinite;
      will-change: transform;
    }
    .floating-actions .whatsapp-float:hover {
      transform: translate3d(0,-3px,0) scale(1.02);
      background-color: #128c7e;
      box-shadow: 0 16px 30px rgba(37,211,102,0.40);
      animation: none;
    }
    .floating-actions .whatsapp-float:hover svg {
      animation: whatsapp-icon-wiggle 0.65s cubic-bezier(0.175,0.885,0.32,1.275) both;
    }
    .floating-actions .whatsapp-float:active { transform: translate3d(0,-1px,0) scale(0.975); }
    .floating-actions .whatsapp-float svg { width: 63px; height: 63px; }
    .floating-actions .whatsapp-float:focus-visible {
      outline: 3px solid rgba(37,211,102,0.4);
      outline-offset: 3px;
    }

    @keyframes whatsapp-pulse {
      0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.22); transform: scale(1); }
      45%  { box-shadow: 0 0 0 8px rgba(37,211,102,0); transform: scale(1.015); }
      100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); transform: scale(1); }
    }
    @keyframes whatsapp-icon-wiggle {
      0%   { transform: rotate(0) scale(1); }
      15%  { transform: rotate(-12deg) scale(1.15); }
      30%  { transform: rotate(10deg) scale(1.15); }
      45%  { transform: rotate(-8deg) scale(1.15); }
      60%  { transform: rotate(5deg) scale(1.15); }
      75%  { transform: rotate(-3deg) scale(1.15); }
      100% { transform: rotate(0) scale(1); }
    }

    @media (max-width: 768px) {
      .floating-actions {
        --floating-action-size: 76px;
        right: calc(10px + env(safe-area-inset-right, 0px));
        bottom: calc(10px + env(safe-area-inset-bottom, 0px));
        gap: 10px;
      }
      .search-float svg { width: 30px; height: 30px; }
      .floating-actions .whatsapp-float svg { width: 36px; height: 36px; }
    }

    @media (prefers-reduced-motion: reduce) {
      .floating-actions .whatsapp-float { animation: none; }
      .search-float { transition: none; }
      .floating-actions > * { transform: translate3d(0,0,0) scale(1) !important; animation: none !important; }
    }

    /* ═══════════════════════════════════════
       MODAL DE BUSCA GLOBAL
    ═══════════════════════════════════════ */
    .global-search-overlay {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: min(18vh, 160px);
      background: rgba(74,46,26,0.48);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.28s ease, visibility 0.28s;
    }
    .global-search-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    body.global-search-open { overflow: hidden; }

    .global-search-modal {
      position: relative;
      width: 92%;
      max-width: 620px;
      transform: translateY(-20px) scale(0.97);
      opacity: 0;
      transition: transform 0.32s cubic-bezier(0.16,1,0.3,1), opacity 0.28s ease;
    }
    .global-search-overlay.active .global-search-modal {
      transform: translateY(0) scale(1);
      opacity: 1;
    }

    .global-search-close {
      position: absolute;
      top: -48px;
      right: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.18);
      color: rgba(255,255,255,0.85);
      cursor: pointer;
      transition: background 0.2s, color 0.2s, transform 0.15s;
    }
    .global-search-close:hover {
      background: rgba(255,255,255,0.22);
      color: #fff;
      transform: scale(1.08);
    }

    .global-search-box {
      background: rgba(250,248,244,0.98);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: 1px solid rgba(181,112,74,0.18);
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(74,46,26,0.22), 0 4px 16px rgba(74,46,26,0.10);
      overflow: hidden;
    }

    .global-search-input-row {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 18px 22px;
      border-bottom: 1px solid rgba(181,112,74,0.10);
    }
    .global-search-icon { flex-shrink: 0; color: var(--terracota); }
    .global-search-input-row input {
      flex: 1;
      border: none;
      outline: none;
      background: transparent;
      font-family: var(--f-body);
      font-size: 1.05rem;
      color: var(--mogno);
    }
    .global-search-input-row input::placeholder { color: var(--cinza); font-weight: 300; }
    .global-search-kbd {
      display: inline-flex;
      align-items: center;
      padding: 3px 8px;
      border: 1px solid var(--areia);
      border-radius: 6px;
      background: var(--creme);
      color: var(--cinza);
      font-family: var(--f-body);
      font-size: 0.66rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      line-height: 1;
    }

    .global-autocomplete-wrap {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease;
      opacity: 0;
    }
    .global-autocomplete-wrap.open { max-height: 420px; opacity: 1; }
    .global-autocomplete-list {
      overflow-y: auto;
      max-height: 380px;
      padding: 6px;
    }
    .global-autocomplete-list::-webkit-scrollbar { width: 6px; }
    .global-autocomplete-list::-webkit-scrollbar-track { background: transparent; }
    .global-autocomplete-list::-webkit-scrollbar-thumb {
      background: rgba(181,112,74,0.18);
      border-radius: 3px;
    }

    .global-ac-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 10px 12px;
      cursor: pointer;
      border-radius: 12px;
      transition: background 0.15s ease, transform 0.1s ease;
      border-bottom: 1px solid rgba(181,112,74,0.05);
    }
    .global-ac-item:last-child { border-bottom: none; }
    .global-ac-item:hover,
    .global-ac-item.ac-active {
      background: var(--mogno);
      transform: scale(1.005);
      box-shadow: 0 2px 12px rgba(74,46,26,0.18);
    }
    .global-ac-item:active { transform: scale(0.98); }

    .global-ac-thumb {
      width: 46px;
      height: 46px;
      border-radius: 10px;
      overflow: hidden;
      flex-shrink: 0;
      border: 1px solid rgba(181,112,74,0.12);
      background: var(--areia);
    }
    .global-ac-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .global-ac-item:hover .global-ac-thumb,
    .global-ac-item.ac-active .global-ac-thumb { border-color: rgba(255,255,255,0.2); }

    .global-ac-text {
      display: flex;
      flex-direction: column;
      gap: 2px;
      min-width: 0;
    }
    .global-ac-title {
      font-family: var(--f-body);
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--mogno);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .global-ac-sub {
      font-size: 0.74rem;
      color: var(--cinza);
      font-weight: 300;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .global-ac-item:hover .global-ac-title,
    .global-ac-item.ac-active .global-ac-title { color: #fff; }
    .global-ac-item:hover .global-ac-sub,
    .global-ac-item.ac-active .global-ac-sub { color: rgba(255,255,255,0.70); }

    .global-ac-item mark {
      background: rgba(181,112,74,0.12);
      color: var(--terracota);
      font-weight: 700;
      border-radius: 3px;
      padding: 0 1px;
    }
    .global-ac-item:hover mark,
    .global-ac-item.ac-active mark { background: rgba(255,255,255,0.18); color: #fff; }

    .global-ac-empty {
      padding: 24px 18px;
      text-align: center;
      color: var(--cinza);
      font-size: 0.88rem;
      line-height: 1.6;
    }
    .global-ac-empty strong { color: var(--terracota); }


    /* ════════════════════════════
       SUBPÁGINAS DE PROCEDIMENTOS
    ════════════════════════════ */
    .hero-sub {
      padding: 9rem 0 5rem;
      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); }
    .hero-sub p { margin-left: auto; margin-right: auto; }

    .conteudo-procedimento {
      padding: 5rem 0;
      background: var(--creme);
    }
    .grid-procedimento {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 5rem;
      align-items: start;
    }
    .texto-proc { max-width: 70ch; margin: 0 auto; }
    .texto-proc p {
      margin-bottom: 1.5rem;
      font-size: 1.1rem;
      line-height: 1.8;
      color: var(--cinza);
    }

    /* Grifo e sublinhado aplicados pelo painel de conteúdo.
       Sem isto o <mark> sai no amarelo padrão do navegador,
       que destoa da paleta do site. */
    .texto-proc mark {
      background: rgba(181,112,74,.18);
      color: var(--mogno);
      padding: 0 .14em;
      border-radius: 2px;
    }
    .is-dark .texto-proc mark { background: rgba(204,128,85,.26); }

    .texto-proc u {
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 3px;
      text-decoration-color: rgba(181,112,74,.55);
    }
    .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; }
    .cta-proc .hero-cta { align-self: center; margin-left: auto; margin-right: auto; }

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


    /* ════════════════════════════
       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);
    }
    /* Carrossel Infinito */
    .carousel-container {
      overflow: hidden;
      width: 100%;
      position: relative;
      margin: 3rem 0;
      cursor: grab;
      padding: 1rem 0;
    }

    .carousel-container:active {
      cursor: grabbing;
    }

    .carousel-container::before,
    .carousel-container::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 15vw;
      z-index: 2;
      pointer-events: none;
    }

    .carousel-container::before {
      left: 0;
      background: linear-gradient(to right, var(--areia) 0%, transparent 100%);
    }

    .carousel-container::after {
      right: 0;
      background: linear-gradient(to left, var(--areia) 0%, transparent 100%);
    }

    .carousel-track {
      display: flex;
      width: max-content;
      will-change: transform;
    }

    .carousel-group {
      display: flex;
      align-items: stretch;
      gap: 2rem;
      padding-right: 2rem;
    }

    .testimonial-card {
      background: var(--branco);
      border-radius: 12px;
      padding: 2.5rem 2.2rem 2rem;
      width: 380px;
      box-shadow: 0 10px 30px rgba(74, 46, 26, 0.04);
      border: 1px solid rgba(220, 203, 171, 0.4);
      user-select: text; /* Alterado para permitir seleção de texto como solicitado */
      cursor: pointer;
      display: flex;
      flex-direction: column;
      flex-shrink: 0;
      transition: transform 0.3s, border-color 0.3s;
    }
    .testimonial-card:hover {
      border-color: var(--terracota);
      transform: translateY(-4px);
    }

    .quote-icon {
      font-family: var(--f-display);
      color: var(--terracota);
      font-size: 3rem;
      line-height: 0;
      margin-top: 1rem;
      margin-bottom: 2rem;
      opacity: 0.4;
    }

    .quote-text {
      font-family: var(--f-display);
      font-size: 1.15rem;
      font-style: italic;
      line-height: 1.6;
      color: var(--mogno);
      margin: 0 0 1.5rem 0;
      flex-grow: 1;
      opacity: 0.9;
    }

    .card-footer-flex {
      margin-top: auto;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .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(2.8rem, 4.6vw, 4.2rem); }
/* ════════════════════════════
   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-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; }
/* ════════════════════════════
   MOCK INSTAGRAM POST (PLACEHOLDER CAROUSEL)
════════════════════════════ */
.mock-ig-post:not(:has(.mock-ig-slide img)) { display: none; }
.img-proc:has(.mock-ig-post):not(:has(.mock-ig-slide img)) { display: none; }

.mock-ig-post {
  background: #FFF;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(74, 46, 26, 0.08);
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  border: 1px solid rgba(220, 203, 171, 0.4);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #262626;
  position: sticky;
  top: 5rem;
}
.mock-ig-header {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #efefef;
}
.mock-ig-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 12px;
  overflow: hidden;
  background: var(--terracota);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
}
.mock-ig-avatar img { width: 100%; height: 100%; object-fit: cover; }
.mock-ig-user { display: flex; flex-direction: column; }
.mock-ig-user strong { font-size: 14px; font-weight: 600; color: #262626; line-height: 1.2; }
.mock-ig-user span { font-size: 12px; color: #8e8e8e; }
.mock-ig-dots { margin-left: auto; letter-spacing: 2px; font-weight: bold; color: #262626; padding-bottom: 6px; cursor: pointer; }
.mock-ig-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  background: #fafafa;
}
.mock-ig-carousel::-webkit-scrollbar { display: none; }
.mock-ig-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #8e8e8e;
  position: relative;
}
.mock-ig-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
}
.mock-ig-slide svg { width: 40px; fill: #dbdbdb; margin-bottom: 8px; }
.mock-ig-actions {
  display: flex;
  padding: 12px 16px;
  gap: 16px;
  align-items: center;
}
.mock-ig-actions svg { width: 24px; height: 24px; fill: transparent; stroke: #262626; stroke-width: 2; cursor: pointer; }
.mock-ig-actions .save { margin-left: auto; }
.mock-ig-caption {
  padding: 0 16px 16px;
  font-size: 14px;
  line-height: 1.5;
}
.mock-ig-caption strong { font-weight: 600; margin-right: 4px; }
.mock-ig-instructions {
  background: rgba(181, 112, 74, 0.1);
  color: var(--terracota);
  padding: 8px 16px;
  font-size: 12px;
  text-align: center;
  border-bottom: 1px solid rgba(181, 112, 74, 0.2);
}

.is-dark .wa-speed-btn:hover { background: #373d41; }

/* Sticky CTA Mobile */
.sticky-mobile-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 1000;
  background-color: #25d366;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--fonte-texto);
  letter-spacing: 0.5px;
}
.sticky-mobile-cta svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
@media (min-width: 769px) {
  .sticky-mobile-cta {
    display: none;
  }
}


/* ════════════════════════════
   EEAT BADGES (CRM, CBO, SBCPO)
════════════════════════════ */
.sobre-eeat-badges {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mogno);
}

.sobre-eeat-badges a {
  text-decoration: none;
  color: inherit;
  opacity: 0.7;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(74, 46, 26, 0.15);
  transition: opacity 0.3s, border-color 0.3s, transform 0.2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sobre-eeat-badges a .cfm-mask-icon {
  display: inline-block;
  height: 22px;
  width: 22px; /* Proporção correta (quadrada 1:1) do arquivo original */
  background-color: currentColor;
  -webkit-mask-image: url('../img/cfm-logo.png');
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url('../img/cfm-logo.png');
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.sobre-eeat-badges a svg {
  height: 22px;
  width: auto;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.sobre-eeat-badges a:hover {
  opacity: 1;
  border-bottom-color: var(--terracota);
  transform: translateY(-2px);
}

@media (max-width: 650px) {
  .sobre-eeat-badges {
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2.5rem;
  }
  .sobre-eeat-badges a {
    border-bottom: 1px solid rgba(74, 46, 26, 0.1);
    width: fit-content;
  }
}

/* ════════════════════════════
   COOKIE CONSENT (Discreto)
════════════════════════════ */
#cookie-consent-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translate3d(-50%, 12px, 0);
    z-index: 1000;
    width: min(460px, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
    min-width: 320px;
    background: rgba(250, 248, 244, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(186, 166, 142, 0.5);
    padding: 0.78rem 1rem;
    box-shadow: 0 14px 34px rgba(74, 46, 26, 0.1);
    opacity: 0;
    transition:
      opacity 0.45s ease,
      transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
      bottom 0.7s cubic-bezier(0.16, 1, 0.3, 1),
      left 0.7s cubic-bezier(0.16, 1, 0.3, 1),
      width 0.45s ease,
      box-shadow 0.35s ease,
      background-color 0.35s ease;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-radius: 8px;
    cursor: default;
}
#cookie-consent-banner:hover {
    background: rgba(250, 248, 244, 1);
    box-shadow: 0 22px 54px rgba(74, 46, 26, 0.16);
}
#cookie-consent-banner.is-visible {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
    pointer-events: auto;
}
.cookie-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    width: 100%;
}
.cookie-container p {
    font-size: 0.68rem;
    color: var(--cinza);
    margin-bottom: 0;
    line-height: 1.35;
    font-family: var(--f-body);
    font-weight: 400;
    letter-spacing: 0.01em;
    white-space: normal;
}
.cookie-container a {
    text-decoration: underline;
    color: var(--terracota);
    text-underline-offset: 0.18em;
}
#cookie-accept-btn {
    background: transparent;
    color: var(--terracota);
    border: 1px solid rgba(181, 112, 74, 0.45);
    padding: 0.78rem 1rem;
    font-size: 0.6rem;
    line-height: 1;
    font-family: var(--f-body);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    min-height: 44px;
    min-width: 104px;
    white-space: nowrap;
}
#cookie-accept-btn:hover {
    background: var(--terracota);
    color: var(--branco);
    border-color: var(--terracota);
    transform: translateY(-1px);
}
@media (max-width: 768px) {
    #cookie-consent-banner {
        top: auto;
        left: 50%;
        right: auto;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 14px) !important;
        width: calc(100vw - 28px);
        max-width: calc(100vw - 28px);
        min-width: 0;
        padding: 0.68rem 0.78rem;
        border-radius: 8px;
        transform: translate3d(-50%, 12px, 0);
        z-index: 1002;
    }
    #cookie-consent-banner.is-visible {
        transform: translate3d(-50%, 0, 0);
    }
    .cookie-container {
        flex-direction: row;
        gap: 0.7rem;
        justify-content: space-between;
        align-items: center;
    }
    .cookie-container p {
        font-size: 0.54rem;
        line-height: 1.2;
        max-width: calc(100% - 104px);
        text-align: left;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        white-space: normal;
    }
    #cookie-accept-btn {
        min-width: 88px;
        min-height: 34px;
        padding: 0.54rem 0.7rem;
        font-size: 0.46rem;
        letter-spacing: 0.12em;
        flex: 0 0 auto;
        margin: 0;
    }
}

/* ════════════════════════════
   BLOG PÚBLICO
   Direção editorial: caderno médico com a mesma paleta e tipografia do site.
════════════════════════════ */
.blog-hero {
  position: relative;
  overflow: hidden;
  padding: 10rem 0 5.5rem;
  background:
    linear-gradient(115deg, var(--branco) 0%, var(--branco) 62%, var(--areia) 62%, var(--areia) 100%);
  border-bottom: 1px solid var(--areia);
}
.blog-hero::before {
  content: '';
  position: absolute;
  width: 540px;
  height: 540px;
  right: -260px;
  top: -290px;
  border: 1px solid rgba(181,112,74,.28);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(181,112,74,.04), 0 0 0 108px rgba(181,112,74,.035);
  pointer-events: none;
}
.blog-hero-grade {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(220px, .45fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
}
.blog-hero-texto { position: relative; z-index: 1; }
.blog-hero-texto .btn-voltar { margin-bottom: 3.2rem; }
.blog-hero-texto h1 {
  max-width: 18ch;
  margin: 1.1rem 0 1.5rem;
  font-family: var(--f-display);
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 300;
  letter-spacing: -.025em;
  line-height: 1.08;
  text-wrap: balance;
}
.blog-hero-texto h1 em { color: var(--terracota); font-weight: 300; }
.blog-hero-texto > p {
  max-width: 56ch;
  padding-left: 1.25rem;
  border-left: 2px solid var(--terracota);
  color: var(--cinza);
  font-size: 1.05rem;
}
.blog-hero-cta {
  width: fit-content;
  max-width: 100%;
  min-height: 48px;
  margin-top: 1.75rem;
  padding: 1rem 1.5rem;
}
.blog-hero-marca {
  min-height: 230px;
  display: grid;
  place-items: center;
  transform: translate(-5rem, -2.5rem);
}
.blog-hero-marca img {
  width: min(100%, 240px);
  height: auto;
  opacity: .78;
  mix-blend-mode: multiply;
  filter: saturate(.82) contrast(.94);
  transition: opacity .35s ease, transform .55s cubic-bezier(.16,1,.3,1);
}
.blog-hero-marca img:hover {
  opacity: .92;
  transform: scale(1.025);
}
.is-dark .blog-hero-marca img {
  mix-blend-mode: normal;
  filter: brightness(0) invert(82%) sepia(23%) saturate(674%) hue-rotate(341deg);
}

.blog-listagem { padding: 6.5rem 0 7rem; background: var(--creme); }
.blog-listagem-cabecalho {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--areia);
}
.blog-listagem-cabecalho h2,
.artigos-relacionados-cabecalho h2 {
  margin-top: .2rem;
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1;
}
.blog-filtros { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .55rem; }
.blog-filtro {
  min-height: 44px;
  padding: .72rem 1rem;
  border: 1px solid var(--areia);
  background: transparent;
  color: var(--cinza);
  font-family: var(--f-body);
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}
.blog-filtro:hover,
.blog-filtro.ativo {
  border-color: var(--mogno);
  background: var(--mogno);
  color: var(--branco);
}

.blog-publicacoes { min-height: 300px; }
.blog-carregando,
.artigo-carregando {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 300px;
  color: var(--cinza);
  text-align: center;
}
.blog-carregando span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terracota);
  animation: blogPulso 1.1s ease-in-out infinite;
}
.blog-carregando span:nth-child(2) { animation-delay: .14s; }
.blog-carregando span:nth-child(3) { animation-delay: .28s; }
.blog-carregando p { margin-left: .6rem; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
@keyframes blogPulso { 0%, 100% { opacity: .25; transform: translateY(0); } 50% { opacity: 1; transform: translateY(-5px); } }

.blog-destaque {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  min-height: 370px;
  margin: 0 0 2rem;
  border: 1px solid var(--areia);
  background: var(--branco);
  box-shadow: 0 24px 60px rgba(74,46,26,.07);
}
.blog-destaque-sem-capa { grid-template-columns: 1fr; }
.blog-destaque-capa,
.blog-cartao-capa {
  display: block;
  overflow: hidden;
  background: var(--areia);
}
.blog-destaque-capa > img,
.blog-destaque-capa > .blog-capa-vazia,
.blog-cartao-capa > img,
.blog-cartao-capa > .blog-capa-vazia {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.16,1,.3,1), filter .4s ease;
}
.blog-destaque:hover .blog-destaque-capa > img,
.blog-cartao:hover .blog-cartao-capa > img { transform: scale(1.025); filter: saturate(.9); }
.blog-capa-vazia {
  min-height: 250px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 72% 18%, rgba(181,112,74,.28), transparent 29%),
    linear-gradient(145deg, var(--areia), var(--creme));
  position: relative;
  overflow: hidden;
}
.blog-capa-vazia::before {
  content: '';
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid rgba(181,112,74,.32);
  border-radius: 50%;
}
.blog-capa-vazia span {
  position: relative;
  font-family: var(--f-display);
  font-size: 4.5rem;
  font-style: italic;
  color: var(--terracota);
}
.blog-destaque-corpo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(2rem, 3.2vw, 2.5rem);
}
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .65rem;
  color: var(--cinza);
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.blog-meta > * + *::before {
  content: '·';
  margin-right: .65rem;
  color: var(--terracota);
}
.blog-destaque h2 {
  margin: 1.25rem 0 1rem;
  font-family: var(--f-display);
  font-size: clamp(2.15rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.02;
}
.blog-destaque h2 a:hover,
.blog-cartao h2 a:hover { color: var(--terracota); }
.blog-destaque-corpo > p,
.blog-cartao-corpo > p {
  color: var(--cinza);
  font-size: .95rem;
  line-height: 1.75;
}
.blog-subtitulo-cartao { margin-bottom: .7rem; color: var(--mogno) !important; font-family: var(--f-display); font-size: 1.1rem !important; }
.blog-link-leitura {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-top: 1.7rem;
  padding-bottom: .28rem;
  border-bottom: 1px solid var(--terracota);
  color: var(--terracota);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.blog-link-leitura:hover span { transform: translateX(4px); }
.blog-link-leitura span { transition: transform .3s ease; }

.blog-grade {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 1.35rem;
}
.blog-cartao {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--areia);
  background: var(--branco);
}
.blog-cartao[hidden],
.blog-destaque[hidden] { display: none; }
.blog-cartao-capa { aspect-ratio: 4 / 3; }
.blog-cartao-corpo {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.65rem;
}
.blog-cartao .blog-meta { font-size: .57rem; }
.blog-cartao h2 {
  margin: 1rem 0 .75rem;
  font-family: var(--f-display);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.12;
}
.blog-cartao .blog-link-leitura { margin-top: auto; padding-top: 1.5rem; }

/* Procedimento entra na listagem sem capa: os doze dividem a mesma imagem. */
.blog-cartao-sem-capa .blog-cartao-corpo { padding: 2rem 1.65rem 1.65rem; }
.blog-cartao-sem-capa .blog-cartao-corpo::before {
  content: '';
  width: 32px;
  height: 1.5px;
  margin-bottom: 1.5rem;
  background: var(--terracota);
}
.blog-cartao-sem-capa h2 { margin-top: .9rem; }

.blog-vazio {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  border: 1px solid var(--areia);
  background: var(--branco);
  text-align: center;
}
.blog-vazio::before {
  content: '';
  width: 54px;
  height: 1px;
  margin-bottom: 2rem;
  background: var(--terracota);
}
.blog-vazio h1,
.blog-vazio h2 {
  max-width: 16ch;
  margin: .8rem 0 1rem;
  font-family: var(--f-display);
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  font-weight: 300;
  line-height: 1.05;
}
.blog-vazio p { max-width: 48ch; color: var(--cinza); }
.blog-botao {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.8rem;
  padding: .95rem 1.5rem;
  border: 1px solid var(--terracota);
  background: var(--terracota);
  color: var(--branco);
  font-family: var(--f-body);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}
.blog-botao:hover { background: var(--argila); border-color: var(--argila); transform: translateY(-2px); }

.blog-chamada {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: var(--mogno);
  color: var(--branco);
}
.blog-chamada::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -170px;
  width: 380px;
  height: 380px;
  border: 55px solid rgba(250,248,244,.04);
  border-radius: 50%;
}
.blog-chamada-conteudo {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.blog-chamada .tag { color: var(--areia); }
.blog-chamada h2 {
  max-width: 20ch;
  margin: .8rem 0 1rem;
  font-family: var(--f-display);
  font-size: clamp(2.35rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
}
.blog-chamada p { max-width: 50ch; color: var(--areia); opacity: .82; }
.blog-chamada .btn-whatsapp { max-width: 330px; margin-top: 2rem; }
.footer-link { display: inline-block; margin-top: .5rem; text-decoration: underline; opacity: .72; }
.footer-link:hover { opacity: 1; color: var(--terracota); }
.footer-separador { margin: 0 .5rem; opacity: .5; }

/* Artigo individual */
.artigo-carregando { min-height: 72vh; padding-top: 8rem; background: var(--branco); }
.artigo-carregando .container { max-width: 850px; }
.artigo-carregando-linha,
.artigo-carregando-titulo {
  display: block;
  height: 12px;
  margin: 0 auto 1.3rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--areia), var(--creme), var(--areia));
  background-size: 240% 100%;
  animation: blogBrilho 1.5s linear infinite;
}
.artigo-carregando-linha { width: 180px; height: 7px; }
.artigo-carregando-titulo { width: 90%; height: 50px; }
.artigo-carregando-titulo.curto { width: 62%; }
.artigo-carregando p { margin-top: 2rem; font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; }
@keyframes blogBrilho { to { background-position: -240% 0; } }

.artigo-cabecalho {
  padding: 10.5rem 0 5rem;
  border-bottom: 1px solid var(--areia);
  background: var(--branco);
}
.artigo-cabecalho-conteudo { max-width: 930px; text-align: center; }
.artigo-cabecalho .btn-voltar { display: flex; width: fit-content; margin: 0 auto 3rem; }
.artigo-meta { justify-content: center; color: var(--terracota); }
.artigo-cabecalho h1 {
  margin: 1.4rem auto 1.25rem;
  font-family: var(--f-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  letter-spacing: -.035em;
  line-height: .98;
  text-wrap: balance;
}
.artigo-subtitulo {
  max-width: 62ch;
  margin: 0 auto;
  color: var(--cinza);
  font-family: var(--f-display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.45;
}
.artigo-autoria {
  margin-top: 2rem;
  color: var(--mogno);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.artigo-autoria span { display: block; margin-top: .18rem; color: var(--cinza); font-size: .62rem; }
.artigo-capa {
  max-width: 1120px;
  margin-top: 4rem !important;
}
.artigo-capa img { width: 100%; max-height: 680px; object-fit: cover; }
.artigo-capa figcaption { margin-top: .7rem; color: var(--cinza); font-size: .68rem; text-align: right; }
.artigo-principal { padding: 5.5rem 0 7rem; background: var(--creme); }
.artigo-layout {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(220px, 280px);
  justify-content: center;
  align-items: start;
  gap: clamp(3rem, 7vw, 6rem);
}
.artigo-corpo { min-width: 0; }
.artigo-corpo > p,
.artigo-corpo > ul,
.artigo-corpo > ol {
  margin-bottom: 1.65rem;
  color: var(--cinza);
  font-size: 1.08rem;
  line-height: 1.9;
}
.artigo-corpo > p:first-child::first-letter {
  float: left;
  margin: .12em .12em 0 0;
  color: var(--terracota);
  font-family: var(--f-display);
  font-size: 4.25rem;
  line-height: .72;
}
.artigo-corpo h2,
.artigo-corpo h3 {
  color: var(--mogno);
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.12;
}
.artigo-corpo h2 { margin: 3.2rem 0 1.25rem; font-size: 2.45rem; }
.artigo-corpo h3 { margin: 2.4rem 0 1rem; font-size: 1.8rem; }
.artigo-corpo ul,
.artigo-corpo ol { padding-left: 1.55rem; }
.artigo-corpo li { margin-bottom: .65rem; padding-left: .35rem; }
.artigo-corpo strong { color: var(--mogno); font-weight: 500; }
.artigo-corpo a { color: var(--terracota); text-decoration: underline; text-underline-offset: .2em; }
.artigo-corpo mark { padding: 0 .14em; border-radius: 2px; background: rgba(181,112,74,.18); color: var(--mogno); }
.artigo-corpo u { text-decoration-color: rgba(181,112,74,.62); text-underline-offset: .2em; }
.artigo-corpo blockquote {
  margin: 2.8rem 0;
  padding: 1.2rem 0 1.2rem 2rem;
  border-left: 2px solid var(--terracota);
  color: var(--mogno);
  font-family: var(--f-display);
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  font-style: italic;
  line-height: 1.35;
}
.artigo-corpo figure { margin: 3rem 0; }
.artigo-corpo figure img { width: 100%; max-height: 620px; object-fit: cover; }
.artigo-corpo figcaption { margin-top: .7rem; color: var(--cinza); font-size: .7rem; text-align: center; }
.artigo-aviso {
  margin-top: 4rem;
  padding: 1.7rem 2rem;
  border: 1px solid var(--areia);
  background: var(--branco);
}
.artigo-aviso strong { display: block; margin-bottom: .3rem; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.artigo-aviso p { color: var(--cinza); font-size: .88rem; line-height: 1.65; }
.artigo-lateral {
  position: sticky;
  top: 7rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--areia);
}
.artigo-lateral > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  margin-bottom: 1.5rem;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.82);
}
.artigo-lateral h2 { margin: .45rem 0 .65rem; font-family: var(--f-display); font-size: 1.65rem; font-weight: 400; line-height: 1.1; }
.artigo-lateral p { color: var(--cinza); font-size: .85rem; line-height: 1.65; }
.artigo-credenciais { display: flex; flex-direction: column; align-items: flex-start; gap: .7rem; margin-top: 1.2rem; }
.artigo-credenciais a { color: var(--terracota); font-size: .65rem; font-weight: 500; letter-spacing: .08em; text-decoration: underline; text-underline-offset: .2em; text-transform: uppercase; }
.artigos-relacionados { padding: 6rem 0; background: var(--branco); }
.artigos-relacionados-cabecalho { margin-bottom: 2.5rem; text-align: center; }
.artigo-nao-encontrado { min-height: 75vh; padding-top: 10rem; border: 0; }

@media (prefers-reduced-motion: reduce) {
  .blog-carregando span,
  .artigo-carregando-linha,
  .artigo-carregando-titulo { animation: none; }
}

@media (max-width: 900px) {
  .blog-hero { background: var(--branco); }
  .blog-hero-grade { grid-template-columns: 1fr; }
  .blog-hero-marca { display: none; }
  .blog-destaque { grid-template-columns: 1fr; }
  .blog-destaque-capa { min-height: 420px; }
  .blog-grade { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .artigo-layout { grid-template-columns: minmax(0, 720px); }
  .artigo-lateral {
    position: static;
    display: grid;
    grid-template-columns: 150px 1fr;
    column-gap: 1.5rem;
    align-items: start;
    padding-top: 2rem;
    border-top: 1px solid var(--areia);
  }
  .artigo-lateral > img { grid-row: 1 / 6; margin: 0; }
}

@media (max-width: 640px) {
  .blog-hero { padding: 8.5rem 0 4rem; }
  .blog-hero-texto .btn-voltar { margin-bottom: 2rem; }
  .blog-hero-texto h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .blog-hero-texto > p { font-size: .94rem; }
  .blog-hero-cta {
    width: calc(100% - 4.75rem);
    margin-inline: auto;
    padding-inline: 1rem;
  }
  .blog-listagem-cabecalho { align-items: flex-start; flex-direction: column; }
  .blog-filtros { justify-content: flex-start; }
  .blog-destaque { min-height: 0; }
  .blog-destaque-capa { min-height: 290px; }
  .blog-destaque-corpo { padding: 2rem 1.5rem; }
  .blog-destaque h2 { font-size: 2.35rem; }
  .blog-grade { grid-template-columns: 1fr; }
  .blog-cartao-capa { aspect-ratio: 3 / 2; }
  .blog-chamada .btn-whatsapp { width: 100%; padding-inline: 1.2rem; }
  .artigo-cabecalho { padding: 8.5rem 0 3.8rem; }
  .artigo-cabecalho h1 { font-size: clamp(2.75rem, 13vw, 4.15rem); }
  .artigo-capa { margin-top: 2rem !important; padding: 0 !important; }
  .artigo-capa figcaption { padding: 0 1.25rem; }
  .artigo-principal { padding: 4rem 0 5rem; }
  .artigo-corpo > p,
  .artigo-corpo > ul,
  .artigo-corpo > ol { font-size: 1rem; line-height: 1.82; }
  .artigo-corpo h2 { font-size: 2rem; }
  .artigo-corpo blockquote { padding-left: 1.35rem; }
  .artigo-lateral { display: block; }
  .artigo-lateral > img { width: 150px; margin-bottom: 1.2rem; }
}
