/* site.css — estilos compartilhados, extraidos do index.html (Fase 1) */

  /* Fontes: só subconjunto latin — cobre 100% do português (lat-ext removido = 7 requests a menos) */
  @font-face{font-family:'Lato';font-style:normal;font-weight:300;font-display:swap;src:url('/fonts/lato-300-normal-latin.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
  @font-face{font-family:'Lato';font-style:normal;font-weight:400;font-display:swap;src:url('/fonts/lato-400-normal-latin.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
  @font-face{font-family:'Lato';font-style:normal;font-weight:700;font-display:swap;src:url('/fonts/lato-700-normal-latin.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
  @font-face{font-family:'Raleway';font-style:normal;font-weight:400;font-display:swap;src:url('/fonts/raleway-400-normal-latin.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
  @font-face{font-family:'Raleway';font-style:normal;font-weight:600;font-display:swap;src:url('/fonts/raleway-600-normal-latin.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
  @font-face{font-family:'Raleway';font-style:normal;font-weight:700;font-display:swap;src:url('/fonts/raleway-700-normal-latin.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
  @font-face{font-family:'Raleway';font-style:normal;font-weight:800;font-display:swap;src:url('/fonts/raleway-800-normal-latin.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
  /* Font fallback metric matching — elimina CLS durante font-display:swap */
  @font-face{font-family:'Lato-fallback';src:local('Arial');size-adjust:97.5%;ascent-override:101%;descent-override:22%;line-gap-override:0%}
  @font-face{font-family:'Raleway-fallback';src:local('Arial');size-adjust:99.5%;ascent-override:94%;descent-override:24%;line-gap-override:0%}
  

    /* ══════════════════════════════════════════
       TOKENS & RESET
    ══════════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --gray:         #545454;
      --gray-dark:    #2a2a2a;
      --gray-deeper:  #1e1e1e;
      --chat-bg:      #232323;
      --orange:       #C8892A;
      --orange-dim:   rgba(200,137,42,.15);
      --orange-glow:  rgba(200,137,42,.35);
      --white:        #ffffff;
      --cream:        #faf8f4;
      --text:         #2c2c2c;
      --muted:        #646464; /* era #888 — aumentado para 5.7:1 contrast ratio (WCAG AA) */
      --border-light: rgba(84,84,84,.1);
      --wa:           #25d366;
      --wa-deep:      #128c4e;
      --radius:       10px;
    }

    html { scroll-behavior: smooth; }
    body { font-family: 'Lato', 'Lato-fallback', sans-serif; background: var(--chat-bg); color: var(--white); overflow-x: hidden; }

    /* ══════════════════════════════════════════
       HEADER — LOGO
    ══════════════════════════════════════════ */
    .site-header {
      background: var(--white);
      border-bottom: 3px solid var(--orange);
      padding: 26px 24px 22px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 24px rgba(0,0,0,.08);
    }

    /* O sizing vai para o <picture> (largura explícita) e o img só diz 100% — sem ambiguidade */
    .site-header picture {
      display: block;
      width: min(320px, 72vw); /* vw direto no viewport — sem depender da largura do pai */
      margin: 0 auto;          /* centraliza como bloco dentro do flex */
    }

    .logo-img {
      display: block;
      width: 100%;             /* 100% do <picture>, que agora tem largura definida */
      height: auto;
      max-width: 320px;
      aspect-ratio: 640 / 305; /* reserva espaço correto antes do load — elimina CLS */
    }

    /* Fallback SVG monogram */
    .logo-fallback {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }
    .logo-fallback-mark {
      position: relative;
      width: 64px; height: 64px;
    }
    .logo-fallback-mark svg { display: block; }
    .logo-fallback-name {
      font-family: 'Raleway', sans-serif;
      font-size: clamp(1.2rem, 3.5vw, 1.75rem);
      font-weight: 600;
      color: var(--gray);
      letter-spacing: .06em;
      line-height: 1;
    }
    .logo-fallback-rule {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Raleway', sans-serif;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .38em;
      color: var(--orange);
      text-transform: uppercase;
    }
    .logo-fallback-rule::before,
    .logo-fallback-rule::after {
      content: '';
      display: block;
      height: 1px; width: 36px;
      background: var(--orange);
      opacity: .6;
    }

    /* ══════════════════════════════════════════
       FOCUS RINGS (acessibilidade teclado)
    ══════════════════════════════════════════ */
    :focus-visible {
      outline: 2.5px solid var(--orange);
      outline-offset: 3px;
      border-radius: 4px;
    }

    /* ══════════════════════════════════════════
       TRUST BAR (credenciais / autoridade)
    ══════════════════════════════════════════ */
    .trust-bar {
      background: var(--gray-dark);
      border-bottom: 1px solid rgba(200,137,42,.2);
      padding: 13px 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      flex-wrap: wrap;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 6px 22px;
      color: rgba(255,255,255,.72);
      font-size: .76rem;
      font-family: 'Raleway', sans-serif;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .trust-item + .trust-item {
      border-left: 1px solid rgba(200,137,42,.25);
    }
    .trust-item i {
      color: var(--orange);
      font-size: .85rem;
      flex-shrink: 0;
      display: inline-block;
      width: 1em;
      min-width: 1em;
    }
    .trust-item .ti-svg {
      width: 16px; height: 16px;
      color: var(--orange);
      flex-shrink: 0;
      stroke-width: 1.5;
    }
    .trust-item strong {
      color: var(--white);
    }
    @media (max-width: 600px) {
      .trust-bar { padding: 10px 16px; gap: 0; }
      .trust-item { padding: 5px 12px; font-size: .7rem; letter-spacing: .04em; }
    }
    @media (max-width: 400px) {
      .trust-item + .trust-item { border-left: none; border-top: 1px solid rgba(200,137,42,.15); }
      .trust-bar { flex-direction: column; gap: 0; }
    }

    /* ══════════════════════════════════════════
       CHAT SECTION
    ══════════════════════════════════════════ */
    .chat-section {
      /* Removido: min-height: calc(100vh - 97px) — gerava espaço vazio embaixo do último botão */
      background: var(--chat-bg);
      background-image:
        radial-gradient(ellipse at 20% 50%, rgba(200,137,42,.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(84,84,84,.08) 0%, transparent 50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 44px 0 56px;
    }

    .hero-h1 {
      font-family: 'Raleway', 'Raleway-fallback', sans-serif;
      font-weight: 700;
      font-size: clamp(1.5rem, 5vw, 2.1rem);
      line-height: 1.2;
      letter-spacing: -.01em;
      color: var(--white);
      text-align: center;
      max-width: 600px;
      padding: 0 18px;
      margin-bottom: 14px;
    }
    .hero-intro {
      font-family: 'Lato', 'Lato-fallback', sans-serif;
      font-size: .95rem;
      line-height: 1.6;
      color: rgba(255,255,255,.78);
      text-align: center;
      max-width: 560px;
      padding: 0 18px;
      margin-bottom: 30px;
    }

    .chat-eyebrow {
      font-family: 'Raleway', sans-serif;
      font-size: .67rem;
      font-weight: 700;
      letter-spacing: .4em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 32px;
      opacity: .85;
    }

    .chat-wrap {
      width: 100%;
      max-width: 540px;
      padding: 0 18px;
      display: flex;
      flex-direction: column;
      gap: 11px;
      contain: layout; /* isola layout interno — CLS do chat não propaga p/ fora */
    }

    /* ── Bubble Left ── */
    .b-left {
      display: flex;
      align-items: flex-end;
      gap: 11px;
      opacity: 0;
      transform: translateY(14px);
      transition: opacity .5s cubic-bezier(.22,.61,.36,1),
                  transform .5s cubic-bezier(.22,.61,.36,1);
    }
    .b-left.on { opacity: 1; transform: translateY(0); }

    .avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--gray);
      border: 2px solid var(--orange);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      font-family: 'Raleway', sans-serif;
      font-size: .7rem; font-weight: 800;
      color: #FFFFFF; /* era var(--orange) = 2.31:1 FALHA WCAG; branco = 6.44:1 PASSA */
      letter-spacing: -.02em;
      overflow: hidden;
    }

    .btext {
      background: var(--white);
      color: var(--text);
      padding: 13px 18px;
      border-radius: 20px 20px 20px 4px;
      font-size: .94rem;
      line-height: 1.6;
      max-width: calc(100% - 57px);
      box-shadow: 0 4px 20px rgba(0,0,0,.22);
    }

    /* ── Bubble Right ── */
    .b-right {
      display: flex;
      align-items: flex-end;
      justify-content: flex-end;
      gap: 10px;
      opacity: 0;
      transform: translateY(14px);
      transition: opacity .5s cubic-bezier(.22,.61,.36,1),
                  transform .5s cubic-bezier(.22,.61,.36,1);
    }
    .b-right.on { opacity: 1; transform: translateY(0); }
    .b-right .btext {
      background: var(--orange);
      color: var(--white);
      border-radius: 20px 20px 4px 20px;
      max-width: calc(100% - 52px);
      box-shadow: 0 4px 20px var(--orange-glow);
    }
    .avatar-user {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: rgba(200,137,42,.18);
      border: 1.5px solid rgba(200,137,42,.45);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .avatar-user svg {
      width: 18px; height: 18px;
      color: var(--orange);
    }

    /* ── Typing dots ── */
    .typing {
      display: flex; align-items: flex-end; gap: 11px;
      opacity: 0; transition: opacity .3s ease;
    }
    .typing.on { opacity: 1; }
    .dots {
      background: var(--white);
      padding: 15px 20px;
      border-radius: 20px 20px 20px 4px;
      display: flex; gap: 5px; align-items: center;
      box-shadow: 0 4px 20px rgba(0,0,0,.18);
    }
    .dots span {
      width: 7px; height: 7px;
      background: var(--orange);
      border-radius: 50%;
      animation: dot-pop 1.3s ease-in-out infinite;
    }
    .dots span:nth-child(2) { animation-delay: .18s; }
    .dots span:nth-child(3) { animation-delay: .36s; }
    @keyframes dot-pop {
      0%,55%,100% { transform: translateY(0) scale(1); opacity: .55; }
      28% { transform: translateY(-8px) scale(1.15); opacity: 1; }
    }

    /* ── Button group ── */
    .btn-group {
      display: flex; flex-direction: column; gap: 9px;
      opacity: 0; transform: translateY(14px);
      transition: opacity .5s cubic-bezier(.22,.61,.36,1),
                  transform .5s cubic-bezier(.22,.61,.36,1);
    }
    .btn-group.on { opacity: 1; transform: translateY(0); }

    .cbtn {
      background: transparent;
      color: rgba(255,255,255,.88);
      border: 1px solid rgba(255,255,255,.14);
      padding: 15px 22px;
      border-radius: 7px;
      font-family: 'Raleway', sans-serif;
      font-size: .91rem; font-weight: 600;
      letter-spacing: .04em;
      cursor: pointer;
      transition: border-color .2s, color .2s;
      text-align: center;
      width: 100%;
      text-decoration: none;
      display: block;
      position: relative;
      overflow: hidden;
    }
    /* Orange fill slides from left */
    .cbtn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--orange);
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform .28s cubic-bezier(.77,0,.175,1);
      z-index: 0;
    }
    .cbtn span { position: relative; z-index: 1; }
    .cbtn:hover { border-color: var(--orange); color: var(--white); }
    .cbtn:hover::before { transform: scaleX(1); }
    .cbtn:active { transform: scale(.98); }
    .cbtn:disabled { opacity: .3; cursor: default; pointer-events: none; }

    /* SVG dentro dos botões de área do chat */
    .cbtn-content {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      justify-content: center;
    }
    .cbtn-svg {
      width: 20px; height: 20px;
      flex-shrink: 0;
      color: inherit; /* segue a cor do texto (transparente → branco no hover) */
      transition: color .2s, transform .25s ease;
    }
    .cbtn:hover .cbtn-svg { transform: scale(1.08); }
    .cbtn.wa { background: var(--wa); border-color: transparent; color: var(--white); }
    .cbtn.wa::before { background: var(--wa-deep); }
    .cbtn.wa:hover { border-color: transparent; }

    /* ══════════════════════════════════════════
       SECTION WRAPPER
    ══════════════════════════════════════════ */
    .sec {
      padding: 92px 24px;
    }
    .sec-light { background: var(--cream); }
    .sec-dark  { background: var(--gray-dark); }

    .sec-head { text-align: center; margin-bottom: 58px; }
    .sec-kicker {
      display: block;
      font-family: 'Raleway', sans-serif;
      font-size: .67rem; font-weight: 700;
      letter-spacing: .38em; text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 12px;
    }
    .sec-title {
      font-family: 'EB Garamond', Georgia, serif;
      font-size: clamp(1.8rem, 4.5vw, 2.6rem);
      font-weight: 600;
      line-height: 1.15;
      letter-spacing: -.01em;
    }
    .sec-light .sec-title,
    .sec-faq   .sec-title { color: var(--gray); }
    .sec-dark  .sec-title { color: var(--white); }
    .sec-rule {
      width: 38px; height: 2px;
      background: var(--orange);
      border: none;
      margin: 16px auto 0;
      border-radius: 2px;
    }

    /* ══════════════════════════════════════════
       ÁREAS — CARDS GRID
    ══════════════════════════════════════════ */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
      gap: 20px;
      max-width: 980px;
      margin: 0 auto;
    }

    .area-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 36px 24px 30px;
      text-align: center;
      box-shadow: 0 2px 18px rgba(0,0,0,.07);
      transition: transform .28s ease, box-shadow .28s ease;
      cursor: pointer;
      text-decoration: none;
      color: var(--text);
      display: block;
      position: relative;
      overflow: hidden;
    }
    /* Orange border slides in from bottom */
    .area-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: var(--orange);
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform .3s cubic-bezier(.77,0,.175,1);
      border-radius: 0 0 var(--radius) var(--radius);
    }
    .area-card:hover {
      transform: translateY(-7px);
      box-shadow: 0 14px 40px rgba(0,0,0,.11);
    }
    .area-card:hover::after { transform: scaleX(1); }

    .area-icon {
      width: 66px; height: 66px;
      border-radius: 50%;
      background: var(--gray);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
      transition: background .28s ease, transform .28s ease;
    }
    .area-card:hover .area-icon {
      background: var(--orange);
      transform: scale(1.08);
    }
    .area-icon svg {
      width: 30px; height: 30px;
      color: var(--orange);
      transition: color .28s ease;
    }
    .area-card:hover .area-icon svg { color: var(--white); }

    .area-card h3 {
      font-family: 'EB Garamond', Georgia, serif;
      font-size: 1.2rem; font-weight: 600;
      color: var(--gray); margin-bottom: 10px;
      letter-spacing: -.01em;
    }
    .area-card p { font-size: .84rem; color: var(--muted); line-height: 1.72; }

    /* ══════════════════════════════════════════
       SOBRE
    ══════════════════════════════════════════ */
    .sobre-inner {
      max-width: 680px;
      margin: 0 auto;
      text-align: center;
    }
    .sobre-text {
      font-size: 1rem; line-height: 1.92;
      color: rgba(255,255,255,.68);
      margin-top: 30px;
    }
    .oab-badge {
      display: inline-block;
      margin-top: 34px;
      padding: 10px 28px;
      border: 1px solid rgba(200,137,42,.45);
      border-radius: 3px;
      font-family: 'Raleway', sans-serif;
      font-size: .7rem; font-weight: 700;
      letter-spacing: .28em;
      color: var(--orange);
      text-transform: uppercase;
      transition: background .2s, border-color .2s;
    }
    .oab-badge:hover {
      background: var(--orange-dim);
      border-color: var(--orange);
    }

    /* ══════════════════════════════════════════
       CONTATO
    ══════════════════════════════════════════ */
    .contato-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
      gap: 30px;
      max-width: 760px;
      margin: 58px auto 0;
    }
    .ci { text-align: center; }
    .ci-icon {
      width: 56px; height: 56px;
      background: var(--gray);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px;
      transition: background .2s;
    }
    .ci:hover .ci-icon { background: var(--orange); }
    .ci-icon svg {
      width: 24px; height: 24px;
      color: var(--orange);
      transition: color .2s;
    }
    .ci:hover .ci-icon svg { color: var(--white); }
    .ci h3 {
      font-family: 'Raleway', sans-serif;
      font-size: .93rem; font-weight: 700;
      color: var(--gray); margin-bottom: 7px;
    }
    .ci p, .ci a {
      font-size: .86rem; color: var(--muted);
      text-decoration: none; line-height: 1.72;
      transition: color .2s;
    }
    .ci a:hover { color: var(--orange); }

    .wa-cta {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 54px;
    }
    .wa-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 18px 40px;
      background: var(--wa);
      color: var(--white);
      border-radius: 50px;
      font-family: 'Raleway', sans-serif;
      font-weight: 700; font-size: .97rem;
      text-decoration: none;
      box-shadow: 0 6px 28px rgba(37,211,102,.3);
      transition: background .22s, transform .18s, box-shadow .22s;
    }
    .wa-cta-btn:hover {
      background: var(--wa-deep);
      transform: translateY(-3px);
      box-shadow: 0 10px 36px rgba(37,211,102,.42);
    }

    /* ══════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════ */
    footer {
      background: #111;
      padding: 40px 24px 32px;
      text-align: center;
      color: rgba(255,255,255,.32);
      font-size: .75rem;
      line-height: 2.1;
    }
    .footer-logo {
      display: block;
      max-width: 130px;
      width: 42%;
      margin: 0 auto 20px;
      opacity: .5;
      filter: brightness(0) invert(1);
      transition: opacity .2s;
    }
    .footer-logo:hover { opacity: .75; }
    footer strong { color: rgba(255,255,255,.62); }
    .footer-legal {
      font-size: .69rem;
      display: block;
      margin-top: 14px;
      opacity: .55;
    }

    /* ══════════════════════════════════════════
       FLOATING WA BUTTON
    ══════════════════════════════════════════ */
    .wa-float {
      position: fixed;
      bottom: 28px; right: 28px;
      width: 62px; height: 62px;
      background: var(--wa);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      text-decoration: none;
      z-index: 9999;
      box-shadow: 0 4px 22px rgba(37,211,102,.5);
      animation: wa-pulse 3s ease-in-out infinite;
      transition: transform .2s, box-shadow .2s;
    }
    .wa-float:hover {
      transform: scale(1.12);
      box-shadow: 0 8px 32px rgba(37,211,102,.7);
      animation: none;
    }
    .wa-float i { color: var(--white); font-size: 1.75rem; }
    .wa-float svg {
      width: 30px; height: 30px;
      color: var(--white);
    }
    /* WhatsApp CTA grande (Agendar Consulta) */
    .wa-cta-svg {
      width: 22px; height: 22px;
      color: var(--white);
      flex-shrink: 0;
    }
    /* WhatsApp dentro do botão final do chat */
    .cbtn-wa-content {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      justify-content: center;
    }
    .cbtn-wa-svg {
      width: 18px; height: 18px;
      color: currentColor;
    }
    @keyframes wa-pulse {
      0%,100% { transform: scale(1); }
      50%      { transform: scale(1.08); }
    }

    /* ══════════════════════════════════════════
       SUB-BOTÕES DE TÓPICO (accordion inline na área)
    ══════════════════════════════════════════ */
    .cbtn-wrap {
      display: flex;
      flex-direction: column;
      width: 100%;
    }

    /* Botão pai quando submenu aberto — mantém texto branco e impede overlay laranja */
    .cbtn.is-open {
      border-color: var(--orange);
      color: var(--white); /* mantém texto visível (não vira laranja) */
    }
    .cbtn.is-open::before,
    .cbtn.is-open:hover::before {
      transform: scaleX(0); /* impede o overlay laranja de cobrir o texto */
    }
    .cbtn.is-open:hover { color: var(--white); border-color: var(--orange); }
    .cbtn::after {
      content: '⌄';
      position: absolute;
      right: 16px; top: 50%;
      transform: translateY(-60%);
      font-size: 1.15rem;
      color: rgba(255,255,255,.4);
      transition: transform .3s ease, color .2s;
      pointer-events: none;
    }
    .cbtn.is-open::after {
      transform: translateY(-40%) rotate(180deg);
      color: var(--orange);
    }
    /* Botão WhatsApp final não tem chevron */
    .cbtn.wa::after { display: none; }

    .sub-btns {
      display: flex;
      flex-direction: column;
      gap: 5px;
      width: 100%;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      padding-left: 14px;
      transition: max-height .4s cubic-bezier(.22,.61,.36,1),
                  opacity .25s ease,
                  margin .3s ease;
      margin: 0;
    }
    .sub-btns.on {
      max-height: 500px;
      opacity: 1;
      margin: 7px 0 3px;
    }

    .sbtn {
      background: transparent;
      color: rgba(255,255,255,.82);
      border: 1px solid rgba(255,255,255,.1);
      padding: 10px 14px;
      border-radius: 6px;
      font-family: 'Raleway', 'Raleway-fallback', sans-serif;
      font-size: .84rem; font-weight: 600;
      letter-spacing: .02em;
      cursor: pointer;
      text-align: left;
      width: 100%;
      transition: border-color .2s, color .2s, background .2s;
    }
    .sbtn:hover, .sbtn:focus-visible {
      border-color: var(--orange);
      color: var(--orange);
      background: rgba(200,137,42,.07);
    }
    .sbtn:disabled { opacity: .45; cursor: not-allowed; }

    /* ══════════════════════════════════════════
       FAQ — SEÇÃO DE PERGUNTAS FREQUENTES
    ══════════════════════════════════════════ */
    .sec-faq { background: var(--cream); }

    .faq-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      margin: 0 auto 36px;
      max-width: 720px;
    }
    .faq-tab {
      background: transparent;
      border: 1.5px solid rgba(84,84,84,.22);
      color: var(--gray);
      padding: 8px 18px;
      border-radius: 50px;
      font-family: 'Raleway', 'Raleway-fallback', sans-serif;
      font-size: .82rem; font-weight: 700;
      letter-spacing: .05em;
      cursor: pointer;
      transition: all .2s;
    }
    .faq-tab:hover { border-color: var(--orange); color: var(--orange); }
    .faq-tab.active {
      background: var(--orange);
      border-color: var(--orange);
      color: #fff;
    }

    .faq-panel { display: none; max-width: 720px; margin: 0 auto; }
    .faq-panel.active { display: block; }

    .faq-item {
      border-bottom: 1px solid rgba(84,84,84,.12);
    }
    .faq-item:first-child { border-top: 1px solid rgba(84,84,84,.12); }

    .faq-q {
      width: 100%;
      background: transparent;
      border: none;
      text-align: left;
      padding: 18px 40px 18px 0;
      font-family: 'Raleway', 'Raleway-fallback', sans-serif;
      font-size: 1rem; font-weight: 600;
      color: var(--gray);
      cursor: pointer;
      position: relative;
      line-height: 1.4;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    .faq-q::after {
      content: '';
      flex-shrink: 0;
      width: 20px; height: 20px;
      border-radius: 50%;
      border: 2px solid var(--orange);
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23C8892A' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/10px no-repeat;
      transition: transform .25s ease;
    }
    .faq-q[aria-expanded="true"]::after { transform: rotate(180deg); }
    .faq-q:hover { color: var(--orange); }

    .faq-a {
      overflow: hidden;
      max-height: 0;
      transition: max-height .35s ease, padding .25s ease;
    }
    .faq-a.open { max-height: 600px; }
    .faq-a p {
      padding: 0 8px 20px;
      font-size: .95rem;
      color: #444;
      line-height: 1.7;
    }

    /* ══════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════ */
    @media (max-width: 560px) {
      /* logo-img: tamanho controlado pelo <picture> pai via min(320px, 72vw) */
      .chat-section { padding: 30px 0 64px; }
      .cbtn { font-size: .86rem; padding: 13px 16px; }
      .cards-grid { grid-template-columns: 1fr 1fr; gap: 13px; }
      .area-card { padding: 24px 14px 20px; }
      .sec { padding: 64px 18px; }
      .wa-float { width: 54px; height: 54px; bottom: 20px; right: 20px; }
      .wa-float i { font-size: 1.5rem; }
    }
    @media (max-width: 380px) {
      .cards-grid { grid-template-columns: 1fr; }
    }

    /* ══════════════════════════════════════════
       CURSOR — todos os clicáveis
    ══════════════════════════════════════════ */
    .ci, .ci a, .area-card, .wa-cta-btn, .wa-float, .cbtn,
    .oab-badge, footer a { cursor: pointer; }

    /* ══════════════════════════════════════════
       REDUCED MOTION — respeita preferência do SO
    ══════════════════════════════════════════ */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
      }
      .wa-float { animation: none; }
      .b-left, .b-right, .btn-group {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }
    }

    /* ══════════════════════════════════════════
       SOBRE — linha de bio com destaque
    ══════════════════════════════════════════ */
    .sobre-quote {
      font-family: 'EB Garamond', Georgia, serif;
      font-size: clamp(1.25rem, 3.5vw, 1.6rem);
      font-style: italic;
      color: rgba(255,255,255,.55);
      line-height: 1.65;
      margin-top: 32px;
      margin-bottom: 18px;
      border-left: 2px solid var(--orange);
      padding-left: 22px;
      text-align: left;
    }
  
/* ══════════════════════════════════════════
   PÁGINAS INTERNAS (serviço/blog) — Fase 1
══════════════════════════════════════════ */
.breadcrumb { background: var(--cream); font-family: 'Raleway', sans-serif; font-size: .8rem; padding: 13px 24px; border-bottom: 1px solid var(--border-light); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 7px; max-width: 980px; margin: 0 auto; align-items: center; }
.breadcrumb li { display: flex; align-items: center; gap: 7px; color: var(--muted); }
.breadcrumb a { color: var(--gray); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb li[aria-current] { color: var(--orange); font-weight: 600; }
.breadcrumb .sep { color: var(--muted); opacity: .55; }

.svc-hero { background: var(--gray-dark); background-image: radial-gradient(ellipse at 20% 30%, rgba(200,137,42,.06) 0%, transparent 60%); padding: 62px 24px 54px; text-align: center; }
.svc-hero-inner { max-width: 760px; margin: 0 auto; }
.svc-hero h1 { font-family: 'Raleway', 'Raleway-fallback', sans-serif; font-weight: 800; font-size: clamp(1.7rem, 5.2vw, 2.6rem); line-height: 1.15; letter-spacing: -.015em; color: var(--white); }
.svc-hero .lead { font-family: 'Lato', 'Lato-fallback', sans-serif; font-size: 1.02rem; line-height: 1.65; color: rgba(255,255,255,.82); margin-top: 18px; }
.svc-hero .wa-cta { margin-top: 30px; }

.prose { max-width: 760px; margin: 0 auto; font-family: 'Lato', 'Lato-fallback', sans-serif; color: var(--text); font-size: 1.02rem; line-height: 1.75; text-align: left; }
.prose h2 { font-family: 'EB Garamond', Georgia, serif; font-size: clamp(1.5rem, 3.6vw, 2rem); font-weight: 600; color: var(--gray-dark); line-height: 1.2; margin: 42px 0 14px; }
.prose > h2:first-child { margin-top: 0; }
.prose h3 { font-family: 'Raleway', sans-serif; font-size: 1.12rem; font-weight: 700; color: var(--gray-dark); margin: 26px 0 10px; }
.prose p { margin: 0 0 16px; }
.prose ul { margin: 0 0 18px; padding-left: 22px; }
.prose li { margin: 0 0 8px; }
.prose strong { color: var(--gray-dark); font-weight: 700; }
.prose a { color: #a86d12; text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--orange); }

.svc-faq { max-width: 760px; margin: 0 auto; }
.svc-faq-item { border-bottom: 1px solid var(--border-light); }
.svc-faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; font-family: 'Raleway', sans-serif; font-size: 1.02rem; font-weight: 600; color: var(--gray-dark); padding: 20px 42px 20px 0; position: relative; }
.svc-faq-q::after { content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; font-weight: 400; color: var(--orange); line-height: 1; }
.svc-faq-q[aria-expanded="true"]::after { content: '\2212'; }
.svc-faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; font-family: 'Lato', 'Lato-fallback', sans-serif; color: var(--text); line-height: 1.7; }
.svc-faq-a.open { max-height: 800px; }
.svc-faq-a p { padding: 0 0 20px; margin: 0; }

@media (max-width: 560px) {
  .svc-hero { padding: 44px 18px 38px; }
  .breadcrumb { font-size: .74rem; padding: 11px 16px; }
}

/* ══════════════════════════════════════════
   BLOG / ARTIGOS — Fase 2
══════════════════════════════════════════ */
.blog-grid { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.blog-card { display: block; background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 26px 24px; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.08); }
.blog-card .tag { font-family: 'Raleway', sans-serif; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); }
.blog-card h2 { font-family: 'EB Garamond', Georgia, serif; font-size: 1.32rem; font-weight: 600; color: var(--gray-dark); margin: 10px 0 8px; line-height: 1.25; }
.blog-card p { font-family: 'Lato', 'Lato-fallback', sans-serif; font-size: .95rem; color: var(--text); line-height: 1.6; margin: 0; }

.article-head { background: var(--cream); padding: 40px 24px 30px; border-bottom: 1px solid var(--border-light); }
.article-head-inner { max-width: 760px; margin: 0 auto; }
.article-head h1 { font-family: 'EB Garamond', Georgia, serif; font-size: clamp(1.8rem, 4.6vw, 2.6rem); font-weight: 600; color: var(--gray-dark); line-height: 1.15; letter-spacing: -.01em; }
.article-meta { font-family: 'Raleway', sans-serif; font-size: .8rem; color: var(--muted); margin-bottom: 12px; }
.article-head .lead { font-family: 'Lato', 'Lato-fallback', sans-serif; font-size: 1.05rem; color: var(--text); line-height: 1.6; margin-top: 14px; }

.related-cta { max-width: 760px; margin: 34px auto 0; display: block; background: var(--orange-dim); border: 1px solid var(--orange-glow); border-radius: var(--radius); padding: 18px 22px; text-decoration: none; font-family: 'Raleway', sans-serif; color: var(--gray-dark); font-weight: 600; transition: background .2s; }
.related-cta:hover { background: rgba(200,137,42,.22); }
.related-cta span { color: var(--orange); }

.author-box { max-width: 760px; margin: 36px auto 0; display: flex; gap: 18px; align-items: center; background: var(--cream); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 22px 24px; }
.author-avatar { flex-shrink: 0; width: 60px; height: 60px; border-radius: 50%; background: var(--gray-dark); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: 'Raleway', sans-serif; font-weight: 700; letter-spacing: .04em; border: 2px solid var(--orange); }
.author-box .ab-name { font-family: 'Raleway', sans-serif; font-weight: 700; color: var(--gray-dark); }
.author-box .ab-oab { font-family: 'Raleway', sans-serif; font-size: .78rem; color: var(--orange); font-weight: 600; margin: 2px 0 6px; }
.author-box .ab-bio { font-family: 'Lato', 'Lato-fallback', sans-serif; font-size: .9rem; color: var(--text); line-height: 1.55; }

.calc { max-width: 760px; margin: 26px auto; background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 26px 24px; }
.calc h3 { font-family: 'Raleway', sans-serif; color: var(--gray-dark); margin: 0 0 16px; }
.calc-field { margin-bottom: 14px; }
.calc-field label { display: block; font-family: 'Raleway', sans-serif; font-size: .85rem; font-weight: 600; color: var(--gray-dark); margin-bottom: 5px; }
.calc-field input, .calc-field select { width: 100%; padding: 10px 12px; border: 1px solid rgba(84,84,84,.25); border-radius: 7px; font-family: 'Lato', 'Lato-fallback', sans-serif; font-size: .95rem; background: var(--white); color: var(--text); }
.calc-btn { background: var(--orange); color: var(--white); border: none; border-radius: 7px; padding: 12px 22px; font-family: 'Raleway', sans-serif; font-weight: 700; cursor: pointer; font-size: .95rem; }
.calc-btn:hover { background: #a86d12; }
.calc-out { margin-top: 20px; border-top: 1px solid var(--border-light); padding-top: 14px; font-family: 'Lato', 'Lato-fallback', sans-serif; }
.calc-out .row { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; border-bottom: 1px dashed var(--border-light); }
.calc-out .total { font-weight: 700; color: var(--gray-dark); font-size: 1.12rem; border-bottom: none; margin-top: 8px; }
.calc-note { font-size: .8rem; color: var(--muted); margin-top: 14px; line-height: 1.5; }

@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; }
  .author-box { flex-direction: column; text-align: center; align-items: center; }
}

/* ══════════════════════════════════════════
   REDESIGN BLOG / INTERNAS — editorial dourado (Fase 2.1)
══════════════════════════════════════════ */

/* Breadcrumb integrado a hero escuro (substitui a barra creme "menu preto") */
.breadcrumb { background: transparent; border: none; padding: 0; margin: 0 0 20px; }
.breadcrumb ol { justify-content: flex-start; max-width: none; gap: 8px; }
.breadcrumb li, .breadcrumb a, .breadcrumb .sep { color: rgba(255,255,255,.5); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; font-family: 'Raleway', sans-serif; }
.breadcrumb a { text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb li[aria-current] { color: var(--orange); }
.breadcrumb .sep { opacity: .45; }

/* Hero editorial escuro */
.dark-hero { position: relative; background: var(--gray-deeper); overflow: hidden; padding: 44px 24px 54px; }
.dark-hero::before { content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 10% -10%, rgba(200,137,42,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 110% 120%, rgba(200,137,42,.07) 0%, transparent 50%); }
.dark-hero::after { content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .4;
  background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 44px 44px; }
.dark-hero-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.dh-tag { display: inline-block; font-family: 'Raleway', sans-serif; font-size: .68rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: #1a1a1a; background: var(--orange); padding: 5px 12px; border-radius: 3px; }
.dark-hero h1 { font-family: 'EB Garamond', Georgia, serif; font-weight: 600; color: var(--white); font-size: clamp(2rem, 5.4vw, 3.05rem); line-height: 1.1; letter-spacing: -.01em; margin: 18px 0 0; max-width: 18ch; }
.dark-hero h1.wide { max-width: none; }
.dh-meta { font-family: 'Raleway', sans-serif; font-size: .8rem; color: rgba(255,255,255,.58); margin-top: 16px; letter-spacing: .02em; }
.dh-meta strong { color: var(--orange); font-weight: 600; }
.dark-hero .lead { font-family: 'Lato', 'Lato-fallback', sans-serif; font-size: 1.06rem; line-height: 1.6; color: rgba(255,255,255,.8); margin-top: 16px; max-width: 60ch; }

/* Magazine grid (índice do blog) */
.mag { max-width: 1040px; margin: 0 auto; }
.mag-feature { display: grid; grid-template-columns: 1.05fr .95fr; background: var(--gray-deeper); border: 1px solid rgba(200,137,42,.28); border-radius: 14px; overflow: hidden; margin-bottom: 30px; text-decoration: none; transition: border-color .2s, transform .2s; }
.mag-feature:hover { border-color: var(--orange); transform: translateY(-3px); }
.mf-side { background: linear-gradient(135deg, #2c2c2c 0%, #181818 100%); display: flex; align-items: center; justify-content: center; min-height: 220px; position: relative; }
.mf-side::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 40%, rgba(200,137,42,.14), transparent 60%); }
.mf-mark { font-family: 'EB Garamond', serif; font-size: 4.6rem; color: rgba(200,137,42,.4); position: relative; }
.mf-body { padding: 36px 34px; display: flex; flex-direction: column; justify-content: center; }
.mf-body .tag { font-family: 'Raleway', sans-serif; font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--orange); }
.mf-body h2 { font-family: 'EB Garamond', serif; font-size: 1.75rem; font-weight: 600; color: var(--white); line-height: 1.16; margin: 12px 0 10px; }
.mf-body p { font-family: 'Lato', sans-serif; font-size: .98rem; color: rgba(255,255,255,.72); line-height: 1.55; margin: 0; }
.mf-body .more { color: var(--orange); font-family: 'Raleway', sans-serif; font-weight: 700; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; margin-top: 16px; }

.mag-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mag-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--border-light); border-top: 3px solid var(--orange); border-radius: 10px; padding: 26px 24px; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.mag-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,.1); }
.mag-card .tag { font-family: 'Raleway', sans-serif; font-size: .66rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); }
.mag-card h2 { font-family: 'EB Garamond', serif; font-size: 1.26rem; font-weight: 600; color: var(--gray-dark); margin: 10px 0 8px; line-height: 1.22; }
.mag-card p { font-family: 'Lato', 'Lato-fallback', sans-serif; font-size: .9rem; color: var(--text); line-height: 1.55; margin: 0 0 16px; }
.mag-card .more { margin-top: auto; color: #a86d12; font-family: 'Raleway', sans-serif; font-weight: 700; font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; }

/* Corpo do artigo — toques editoriais */
.post > p:first-of-type::first-letter { font-family: 'EB Garamond', serif; font-size: 3.3rem; line-height: .82; float: left; color: var(--orange); margin: 6px 12px -2px 0; font-weight: 600; }
.post h2 { position: relative; padding-left: 20px; }
.post h2::before { content: ''; position: absolute; left: 0; top: .2em; bottom: .2em; width: 4px; background: var(--orange); border-radius: 2px; }

@media (max-width: 820px) {
  .mag-grid { grid-template-columns: 1fr 1fr; }
  .mag-feature { grid-template-columns: 1fr; }
  .mf-side { min-height: 130px; }
}
@media (max-width: 560px) {
  .mag-grid { grid-template-columns: 1fr; }
  .dark-hero { padding: 32px 18px 38px; }
  .post > p:first-of-type::first-letter { font-size: 2.8rem; }
}

/* ══════════════════════════════════════════
   OPÇÃO B — herói CLARO (branco + filete dourado) — Fase 2.2
   Heróis de conteúdo (blog index, artigos, serviço) viram claros e coesos.
══════════════════════════════════════════ */
.dark-hero, .svc-hero {
  background: var(--white);
  padding: 38px 24px 42px;
  border-bottom: 1px solid var(--border-light);
}
.dark-hero::before, .dark-hero::after { content: none; background: none; }
.dark-hero-inner, .svc-hero-inner { max-width: 820px; }

/* Breadcrumb claro e discreto (sobre fundo claro) */
.breadcrumb { margin: 0 0 18px; }
.breadcrumb li, .breadcrumb a, .breadcrumb .sep {
  color: var(--muted); font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase; font-weight: 700; font-family: 'Raleway', sans-serif;
}
.breadcrumb a:hover, .breadcrumb li[aria-current] { color: var(--orange); }
.breadcrumb .sep { color: #c2bfb6; opacity: 1; }

/* Tag dourada em pílula */
.dh-tag { color: #5a3c0e; background: #f3e3c4; }

/* Título serifado com filete dourado à esquerda (assinatura da opção B) */
.dark-hero h1, .svc-hero h1 {
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: 600;
  color: var(--gray-dark);
  border-left: 4px solid var(--orange);
  padding-left: 20px;
  margin-top: 16px;
}
.dark-hero h1 { max-width: 24ch; }
.dark-hero h1.wide, .svc-hero h1 { max-width: none; }

/* Meta e lead em tom escuro legível */
.dh-meta { color: var(--muted); }
.dh-meta strong { color: var(--orange); }
.dark-hero .lead, .svc-hero .lead { color: var(--text); }

/* Card de destaque do índice também claro */
.mag-feature { background: var(--white); border: 1px solid var(--border-light); border-top: 3px solid var(--orange); }
.mag-feature:hover { border-color: var(--orange); border-top-color: var(--orange); }
.mf-side { background: var(--cream); }
.mf-side::after { content: none; background: none; }
.mf-mark { color: rgba(200,137,42,.5); }
.mf-body .tag { color: var(--orange); }
.mf-body h2 { color: var(--gray-dark); }
.mf-body p { color: var(--text); }
.mf-body .more { color: #a86d12; }
