
    @charset 'utf-8';

    /* ────────────────────────────────────────
       CUSTOM PROPERTIES
    ──────────────────────────────────────── */
    :root {
      --bur:      #590222;
      --bur-deep: #4F0015;
      --bur-ink:  #1C0309;
      --champ:    #F2D0A7;
      --blush:    #D7C4CA;
      --cream:    #FDF8F3;
      --cream-2:  #F7EDE2;
      --text:     #200A10;
      --text-mid: #6B4050;
      --white:    #FFFFFF;

      --f-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      --f-body:    'Outfit', system-ui, -apple-system, sans-serif;

      --nav-h:  70px;
      --pad-v:  clamp(64px, 9vw, 128px);
      --gutter: clamp(20px, 5vw, 64px);
      --wrap:   1200px;

      --r-sm: 3px;
      --r-md: 8px;
      --r-lg: 16px;

      --ease: cubic-bezier(0.4, 0, 0.2, 1);
      --t:    0.3s var(--ease);

      --sh-sm: 0 2px 12px rgba(89,2,34,0.07);
      --sh-md: 0 8px 36px rgba(89,2,34,0.12);
      --sh-lg: 0 24px 72px rgba(89,2,34,0.16);
    }

    /* ────────────────────────────────────────
       RESET
    ──────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    body {
      font-family: var(--f-body);
      background: var(--cream);
      color: var(--text);
      line-height: 1.65;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    ul, ol { list-style: none; }
    button { font-family: inherit; }

    /* ────────────────────────────────────────
       UTILITIES
    ──────────────────────────────────────── */
    .wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
    .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

    /* ────────────────────────────────────────
       NAVIGATION
    ──────────────────────────────────────── */
    #nav {
      position: fixed;
      inset: 0 0 auto;
      z-index: 100;
      height: var(--nav-h);
      transition: background var(--t), backdrop-filter var(--t), box-shadow var(--t);
    }
    #nav.solid {
      background: rgba(28, 3, 9, 0.95);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 1px 0 rgba(242,208,167,0.06), 0 4px 32px rgba(0,0,0,0.25);
    }
    .nav-inner {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: var(--wrap);
      margin: 0 auto;
      padding: 0 var(--gutter);
    }
    .nav-logo {
        display: flex;
        flex-direction: row;
        align-items: center;
        line-height: 1;
        gap: 12px;
        text-decoration: none;
    }
    .nav-logo-name {
      font-family: var(--f-display);
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--champ);
      letter-spacing: 0.02em;
    }
    .nav-logo-tag {
      font-size: 0.58rem;
      font-weight: 300;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(215,196,202,0.55);
    }
    .nav-logo-img {
        height: 45px;
        width: auto;
        object-fit: contain;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: clamp(18px, 2.5vw, 40px);
    }
    .nav-link {
      font-size: 0.73rem;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(215,196,202,0.75);
      padding: 3px 0;
      position: relative;
      transition: color var(--t);
    }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -1px; left: 0;
      width: 0; height: 1px;
      background: var(--champ);
      transition: width var(--t);
    }
    .nav-link:hover { color: var(--champ); }
    .nav-link:hover::after { width: 100%; }
    .nav-cta {
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 9px 20px;
      background: var(--champ);
      color: var(--bur-deep) !important;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-radius: var(--r-sm);
      transition: background var(--t), transform var(--t);
      white-space: nowrap;
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover { background: var(--blush); transform: translateY(-1px); }

    .burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none; border: none;
      cursor: pointer; padding: 4px;
    }
    .burger span {
      display: block; width: 22px; height: 1.5px;
      background: var(--champ);
      transition: var(--t);
    }

    @media (max-width: 820px) {
      .nav-links {
        position: fixed;
        top: var(--nav-h); left: 0; right: 0;
        background: rgba(28, 3, 9, 0.98);
        flex-direction: column;
        padding: 28px var(--gutter) 36px;
        gap: 22px;
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: transform var(--t), opacity var(--t);
        border-top: 1px solid rgba(242,208,167,0.07);
      }
      .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
      .burger { display: flex; }
      .nav-link { font-size: 0.9rem; }
    }

    /* ────────────────────────────────────────
       HERO
    ──────────────────────────────────────── */
    #hero {
      min-height: 100svh;
      background-color: var(--bur-deep);
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      overflow: hidden;
    }
    #hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='f'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23f)' opacity='0.045'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 1;
    }
    #hero::after {
      content: '';
      position: absolute;
      top: 15%; bottom: 15%;
      left: 50%; width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(242,208,167,0.18) 35%, rgba(242,208,167,0.18) 65%, transparent);
      z-index: 2;
      transform: translateX(-50%);
    }
    .hero-glow {
      position: absolute;
      width: 60vw; height: 60vw;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(89,2,34,0.5) 0%, transparent 70%);
      top: -10%; left: -10%;
      pointer-events: none;
      z-index: 1;
    }
    .hero-content {
      position: relative; z-index: 3;
      display: flex; flex-direction: column; justify-content: center;
      padding: calc(var(--nav-h) + 52px) var(--gutter) var(--pad-v) clamp(28px, 6vw, 88px);
    }
    .eyebrow {
      display: inline-flex; align-items: center; gap: 14px;
      font-size: 0.67rem; font-weight: 400;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--champ);
      margin-bottom: 28px;
    }
    .eyebrow::before {
      content: ''; display: block;
      width: 36px; height: 1px; background: var(--champ);
    }
    .eyebrow--dark { color: var(--bur); }
    .eyebrow--dark::before { background: var(--bur); }
    .eyebrow--light { color: var(--champ); }
    .eyebrow--light::before { background: var(--champ); }
    .eyebrow--center { justify-content: center; }

    .hero-h1 {
      font-family: var(--f-display);
      font-size: clamp(2.6rem, 4.5vw, 4.8rem);
      font-weight: 300;
      line-height: 1.08;
      color: var(--cream);
      letter-spacing: -0.01em;
    }
    .hero-h1 strong {
      display: block;
      font-weight: 600;
      font-style: italic;
      color: var(--champ);
    }
    .hero-sub {
      font-size: clamp(0.95rem, 1.4vw, 1.08rem);
      font-weight: 300;
      color: rgba(215,196,202,0.82);
      line-height: 1.75;
      max-width: 430px;
      margin: 28px 0 40px;
    }
    .hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 9px;
      padding: 15px 30px;
      background: var(--champ); color: var(--bur-deep);
      font-family: var(--f-body); font-size: 0.8rem;
      font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
      border-radius: var(--r-sm); border: none; cursor: pointer;
      transition: background var(--t), transform var(--t), box-shadow var(--t);
    }
    .btn-primary:hover {
      background: var(--blush);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(242,208,167,0.22);
    }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      color: rgba(215,196,202,0.65);
      font-size: 0.82rem; font-weight: 300;
      padding-bottom: 2px;
      border-bottom: 1px solid rgba(215,196,202,0.25);
      transition: color var(--t), border-color var(--t);
    }
    .btn-ghost:hover { color: var(--champ); border-color: rgba(242,208,167,0.5); }
    .hero-stats {
      display: flex; gap: 36px; flex-wrap: wrap;
      margin-top: 60px;
      padding-top: 40px;
      border-top: 1px solid rgba(242,208,167,0.08);
    }
    .stat-num {
      font-family: var(--f-display); font-size: 2.2rem;
      font-weight: 600; color: var(--champ); line-height: 1;
    }
    .stat-label {
      font-size: 0.67rem; font-weight: 300;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: rgba(215,196,202,0.5); margin-top: 5px;
    }
    .hero-photo {
      position: relative; z-index: 3;
      display: flex; align-items: flex-end; justify-content: center;
      overflow: hidden;
    }
    .hero-photo-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(150deg, rgba(89,2,34,0.15) 0%, rgba(79,0,21,0.55) 100%);
    }
    .hero-photo img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; object-position: center top;
    }
    .hero-photo-placeholder {
      position: relative; z-index: 2; width: 100%; height: 100%;
      min-height: 60svh;
      display: flex; flex-direction: column;
      align-items: center; justify-content: flex-end;
      padding: 0 32px 64px;
      background: linear-gradient(160deg, rgba(89,2,34,0.25) 0%, rgba(45,0,10,0.8) 100%);
    }
    .photo-initials {
      width: 160px; height: 160px; border-radius: 50%;
      background: linear-gradient(135deg, var(--bur), var(--bur-deep));
      border: 1px solid rgba(242,208,167,0.22);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--f-display); font-size: 3.5rem;
      font-weight: 600; font-style: italic;
      color: var(--champ);
      margin-bottom: 24px;
      box-shadow: 0 0 0 8px rgba(242,208,167,0.04), 0 0 0 16px rgba(242,208,167,0.02);
    }
    .photo-name {
      font-family: var(--f-display); font-size: 1.5rem;
      font-weight: 600; color: var(--cream); text-align: center;
    }
    .photo-title {
      font-size: 0.68rem; font-weight: 300;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--champ); margin-top: 8px; text-align: center;
    }
    .corners { position: absolute; inset: 28px; pointer-events: none; z-index: 3; }
    .corners::before, .corners::after,
    .corners span::before, .corners span::after {
      content: ''; position: absolute;
      width: 18px; height: 18px;
      border-color: rgba(242,208,167,0.3); border-style: solid;
    }
    .corners::before  { top: 0; left: 0;  border-width: 1px 0 0 1px; }
    .corners::after   { top: 0; right: 0; border-width: 1px 1px 0 0; }
    .corners span::before { bottom: 0; left: 0;  border-width: 0 0 1px 1px; }
    .corners span::after  { bottom: 0; right: 0; border-width: 0 1px 1px 0; }

    @media (max-width: 768px) {
      #hero { grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
      #hero::after { display: none; }
      .hero-photo { grid-row: 1; min-height: 48svh; }
      .hero-photo-placeholder { min-height: 48svh; padding-bottom: 40px; }
      .photo-initials { width: 120px; height: 120px; font-size: 2.8rem; }
      .hero-content { grid-row: 2; padding: 40px var(--gutter) 56px; }
      .hero-stats { gap: 24px; margin-top: 40px; padding-top: 32px; }
    }

    /* ────────────────────────────────────────
       SECTION BASE
    ──────────────────────────────────────── */
    .section { padding: var(--pad-v) 0; }
    .sec-title {
      font-family: var(--f-display);
      font-size: clamp(2rem, 3.8vw, 3.4rem);
      font-weight: 300; line-height: 1.12;
      letter-spacing: -0.01em;
    }
    .sec-title em { font-style: italic; font-weight: 600; }
    .sec-lead {
      font-size: clamp(0.95rem, 1.4vw, 1.06rem);
      font-weight: 300; line-height: 1.82;
      color: var(--text-mid);
      margin-top: 20px; max-width: 580px;
    }

    /* ────────────────────────────────────────
       SOBRE
    ──────────────────────────────────────── */
    #sobre { background: var(--cream); }
    .sobre-grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: clamp(40px, 7vw, 110px);
      align-items: center;
    }
    .sobre-visual { position: relative; }
    .sobre-img-wrap {
      aspect-ratio: 4/5;
      background: linear-gradient(145deg, var(--bur-deep), var(--bur));
      border-radius: var(--r-md);
      overflow: hidden;
      position: relative;
    }
    .sobre-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
    .sobre-placeholder {
      width: 100%; height: 100%; min-height: 480px;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--f-display); font-size: 7rem;
      font-weight: 700; font-style: italic;
      color: rgba(242,208,167,0.08);
    }
    .sobre-badge {
      position: absolute;
      bottom: -20px; right: -20px;
      width: 164px; padding: 22px 20px;
      background: var(--champ);
      border-radius: var(--r-sm);
      box-shadow: var(--sh-md);
    }
    .sobre-badge-num {
      font-family: var(--f-display); font-size: 2.6rem;
      font-weight: 700; color: var(--bur-deep); line-height: 1;
    }
    .sobre-badge-text {
      font-size: 0.73rem; line-height: 1.4;
      color: var(--bur); margin-top: 5px;
    }
    .sobre-body {
      font-size: 0.97rem; line-height: 1.88;
      color: var(--text-mid); margin-top: 28px;
    }
    .sobre-body p + p { margin-top: 15px; }
    .sobre-body strong { color: var(--text); font-weight: 500; }
    .sobre-quote {
      margin-top: 36px;
      padding: 22px 28px;
      border-left: 2px solid var(--bur);
      background: rgba(89,2,34,0.03);
      border-radius: 0 var(--r-sm) var(--r-sm) 0;
    }
    .sobre-quote p {
      font-family: var(--f-display); font-size: 1.2rem;
      font-style: italic; font-weight: 400;
      color: var(--text); line-height: 1.55;
    }
    .sobre-oab {
      display: inline-flex; align-items: center; gap: 8px;
      margin-top: 28px; font-size: 0.75rem;
      color: var(--text-mid); letter-spacing: 0.04em;
    }
    .sobre-oab::before { content: '⚖'; font-size: 0.95rem; }

    @media (max-width: 768px) {
      .sobre-grid { grid-template-columns: 1fr; }
      .sobre-visual { max-width: 340px; margin: 0 auto; }
      .sobre-placeholder { min-height: 360px; }
      .sobre-badge { bottom: -14px; right: -10px; width: 140px; padding: 16px; }
    }

    /* ────────────────────────────────────────
       ÁREAS DE ATUAÇÃO
    ──────────────────────────────────────── */
    #areas { background: var(--bur-ink); }
    #areas .sec-title { color: var(--cream); }
    #areas .sec-title em { color: var(--champ); }
    #areas .sec-lead { color: rgba(253,248,243,0.62); margin: 20px auto 0; text-align: center; }
    .areas-header { text-align: center; max-width: 620px; margin: 0 auto 64px; }
    .areas-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
      background: rgba(242,208,167,0.05);
      border: 1px solid rgba(242,208,167,0.05);
      border-radius: var(--r-md);
      overflow: hidden;
    }
    @media (max-width: 640px) { .areas-grid { grid-template-columns: 1fr; } }
    .area-card {
      background: rgba(255,255,255,0.02);
      padding: clamp(36px, 5vw, 56px);
      position: relative;
      transition: background var(--t);
      overflow: hidden;
    }
    .area-card::after {
      content: '';
      position: absolute; bottom: 0; left: 0;
      width: 0; height: 2px;
      background: linear-gradient(to right, var(--champ), var(--blush));
      transition: width 0.45s var(--ease);
    }
    .area-card:hover { background: rgba(242,208,167,0.04); }
    .area-card:hover::after { width: 100%; }
    .area-num {
      font-family: var(--f-display); font-size: 4rem;
      font-weight: 300; color: rgba(242,208,167,0.06);
      line-height: 1; margin-bottom: 20px;
      transition: color var(--t);
    }
    .area-card:hover .area-num { color: rgba(242,208,167,0.1); }
    .area-title {
      font-family: var(--f-display); font-size: 1.55rem;
      font-weight: 400; color: var(--champ);
      margin-bottom: 14px; line-height: 1.2;
    }
    .area-text {
      font-size: 0.88rem; font-weight: 300;
      color: rgba(253,248,243,0.6); line-height: 1.78;
    }
    .area-link {
      display: inline-flex; align-items: center; gap: 7px;
      margin-top: 24px;
      font-size: 0.72rem; font-weight: 500;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--champ);
      transition: gap var(--t);
    }
    .area-link:hover { gap: 13px; }

    /* ────────────────────────────────────────
       O QUE FAZER
    ──────────────────────────────────────── */
    #o-que-fazer { background: var(--cream-2); }
    .oqf-grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: clamp(48px, 6vw, 104px);
      align-items: start;
    }
    .oqf-sticky { position: sticky; top: calc(var(--nav-h) + 28px); }
    .oqf-steps { display: flex; flex-direction: column; }
    .step {
      display: grid;
      grid-template-columns: 52px 1fr;
      gap: 20px;
      padding: 32px 0;
      border-bottom: 1px solid rgba(89,2,34,0.07);
      transition: background var(--t);
    }
    .step:first-child { padding-top: 0; }
    .step:last-child { border-bottom: none; }
    .step-circle {
      width: 52px; height: 52px; flex-shrink: 0;
      border: 1px solid rgba(89,2,34,0.2); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--f-display); font-size: 1.1rem;
      font-weight: 600; color: var(--bur);
      margin-top: 2px;
      transition: background var(--t), color var(--t), border-color var(--t);
    }
    .step:hover .step-circle {
      background: var(--bur); color: var(--champ);
      border-color: var(--bur);
    }
    .step-title {
      font-family: var(--f-display); font-size: 1.18rem;
      font-weight: 600; color: var(--text); margin-bottom: 8px;
    }
    .step-text { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; }

    @media (max-width: 768px) {
      .oqf-grid { grid-template-columns: 1fr; }
      .oqf-sticky { position: static; }
    }

    /* ────────────────────────────────────────
       FAQ
    ──────────────────────────────────────── */
    #faq { background: var(--bur-deep); }
    #faq .sec-title { color: var(--cream); }
    #faq .sec-title em { color: var(--champ); }
    #faq .sec-lead { color: rgba(253,248,243,0.6); }
    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1.65fr;
      gap: clamp(48px, 6vw, 104px);
      align-items: start;
    }
    .faq-sticky { position: sticky; top: calc(var(--nav-h) + 28px); }
    .faq-cta { margin-top: 40px; }
    .faq-list { display: flex; flex-direction: column; }
    .faq-item { border-bottom: 1px solid rgba(242,208,167,0.08); }
    .faq-item:first-child { border-top: 1px solid rgba(242,208,167,0.08); }
    .faq-btn {
      width: 100%; background: none; border: none; padding: 24px 0;
      display: flex; align-items: center; justify-content: space-between; gap: 20px;
      cursor: pointer; text-align: left;
    }
    .faq-q {
      font-family: var(--f-display); font-size: 1.12rem;
      font-weight: 400; line-height: 1.3; color: var(--cream);
      transition: color var(--t);
    }
    .faq-btn:hover .faq-q { color: var(--champ); }
    .faq-icon {
      width: 30px; height: 30px; flex-shrink: 0;
      border: 1px solid rgba(242,208,167,0.18); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--champ); font-size: 1rem; line-height: 1;
      transition: transform var(--t), background var(--t), color var(--t);
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--champ); color: var(--bur-deep); }
    .faq-panel { max-height: 0; overflow: hidden; transition: max-height 0.42s var(--ease); }
    .faq-item.open .faq-panel { max-height: 500px; }
    .faq-ans {
      padding: 0 0 24px;
      font-size: 0.88rem; font-weight: 300;
      color: rgba(253,248,243,0.65); line-height: 1.85;
    }

    @media (max-width: 768px) {
      .faq-grid { grid-template-columns: 1fr; }
      .faq-sticky { position: static; }
    }

    /* ────────────────────────────────────────
       DEPOIMENTOS
    ──────────────────────────────────────── */
    #depoimentos { background: #F7EDE2; }
    .depo-header { text-align: center; margin-bottom: 56px; }
    .depo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
      gap: 22px;
    }
    .depo-card {
      background: var(--white);
      padding: 36px 32px;
      border-radius: var(--r-md);
      box-shadow: var(--sh-sm);
      position: relative;
      transition: transform var(--t), box-shadow var(--t);
    }
    .depo-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
    .depo-card::before {
      content: '\201C';
      position: absolute; top: 18px; right: 26px;
      font-family: var(--f-display); font-size: 5.5rem;
      font-weight: 700; color: rgba(89,2,34,0.055); line-height: 1;
    }
    .stars { display: flex; gap: 3px; margin-bottom: 18px; }
    .star { color: #C8A23E; font-size: 0.88rem; }
    .depo-text {
      font-size: 0.94rem; font-weight: 300;
      color: var(--text-mid); line-height: 1.82;
      margin-bottom: 24px;
    }
    .depo-author {
      display: flex; align-items: center; gap: 12px;
      padding-top: 18px;
      border-top: 1px solid rgba(89,2,34,0.07);
    }
    .depo-avatar {
      width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
      background: linear-gradient(135deg, var(--bur), var(--bur-deep));
      display: flex; align-items: center; justify-content: center;
      font-family: var(--f-display); font-size: 1rem;
      font-weight: 600; font-style: italic; color: var(--champ);
    }
    .depo-name { font-weight: 500; font-size: 0.88rem; color: var(--text); }
    .depo-note {
      text-align: center; margin-top: 36px;
      font-size: 0.7rem; color: var(--text-mid); letter-spacing: 0.03em;
    }

    /* ────────────────────────────────────────
       CTA FINAL
    ──────────────────────────────────────── */
    #cta-final {
      background: var(--bur);
      position: relative; overflow: hidden;
    }
    #cta-final::before {
      content: 'Nobre';
      position: absolute; right: -3%; top: 50%;
      transform: translateY(-50%);
      font-family: var(--f-display);
      font-size: clamp(7rem, 17vw, 19rem);
      font-weight: 700; font-style: italic;
      color: rgba(255,255,255,0.028);
      line-height: 1; pointer-events: none; white-space: nowrap;
    }
    .cta-inner { position: relative; z-index: 2; text-align: center; max-width: 660px; margin: 0 auto; }
    .cta-title {
      font-family: var(--f-display);
      font-size: clamp(2.2rem, 4.5vw, 3.8rem);
      font-weight: 300; color: var(--cream); line-height: 1.12;
      margin-bottom: 20px;
    }
    .cta-title em { font-style: italic; font-weight: 600; color: var(--champ); }
    .cta-sub {
      font-size: 1rem; font-weight: 300;
      color: rgba(253,248,243,0.72); line-height: 1.75;
      margin-bottom: 42px;
    }
    .cta-btn {
      display: inline-flex; align-items: center; gap: 12px;
      padding: 18px 40px;
      background: var(--champ); color: var(--bur-deep);
      font-size: 0.85rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      border-radius: var(--r-sm);
      box-shadow: 0 4px 28px rgba(0,0,0,0.2);
      transition: background var(--t), transform var(--t), box-shadow var(--t);
    }
    .cta-btn:hover {
      background: var(--cream);
      transform: translateY(-3px);
      box-shadow: 0 12px 44px rgba(0,0,0,0.25);
    }
    .cta-note {
      margin-top: 22px; font-size: 0.77rem;
      color: rgba(253,248,243,0.38); letter-spacing: 0.05em;
    }

    /* ────────────────────────────────────────
       FOOTER
    ──────────────────────────────────────── */
    footer {
      background: var(--bur-ink);
      color: var(--blush);
      padding: 72px 0 0;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
      gap: 40px;
      padding-bottom: 60px;
      border-bottom: 1px solid rgba(215,196,202,0.07);
    }
    @media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
    .footer-brand-name {
      font-family: var(--f-display); font-size: 1.55rem;
      font-weight: 600; color: var(--champ); margin-bottom: 4px;
    }
    .footer-brand-tag {
      font-size: 0.6rem; letter-spacing: 0.2em;
      text-transform: uppercase; color: rgba(215,196,202,0.38);
      margin-bottom: 18px;
    }
    .footer-brand-desc {
      font-size: 0.83rem; font-weight: 300;
      line-height: 1.8; color: rgba(215,196,202,0.52);
      max-width: 250px;
    }
    .footer-socials { display: flex; gap: 10px; margin-top: 22px; }
    .footer-social {
      width: 34px; height: 34px; border-radius: 50%;
      border: 1px solid rgba(215,196,202,0.12);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.82rem; color: rgba(215,196,202,0.5);
      transition: all var(--t);
    }
    .footer-social:hover { border-color: var(--champ); color: var(--champ); background: rgba(242,208,167,0.05); }
    .footer-col-title {
      font-size: 0.62rem; font-weight: 500;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--champ); margin-bottom: 20px;
    }
    .footer-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-link {
      font-size: 0.83rem; font-weight: 300;
      color: rgba(215,196,202,0.52); transition: color var(--t);
    }
    .footer-link:hover { color: var(--champ); }
    .footer-contact-row {
      display: flex; align-items: flex-start; gap: 10px;
      margin-bottom: 12px;
    }
    .footer-contact-text {
      font-size: 0.83rem; font-weight: 300;
      color: rgba(215,196,202,0.52); line-height: 1.5;
    }
    .footer-bottom {
      padding: 22px 0;
      display: flex; align-items: center;
      justify-content: space-between; flex-wrap: wrap; gap: 12px;
    }
    .footer-copy { font-size: 0.72rem; font-weight: 300; color: rgba(215,196,202,0.28); }
    .footer-legal {
      font-size: 0.67rem; color: rgba(215,196,202,0.2);
      max-width: 420px; text-align: right; line-height: 1.5;
    }
    @media (max-width: 600px) { .footer-legal { text-align: left; } }

    /* ────────────────────────────────────────
       WHATSAPP FLOAT
    ──────────────────────────────────────── */
    .wa-float {
      position: fixed; bottom: 24px; right: 24px;
      z-index: 99; width: 54px; height: 54px;
      background: #25D366; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 22px rgba(37,211,102,0.38);
      transition: transform var(--t), box-shadow var(--t);
    }
    .wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 36px rgba(37,211,102,0.48); }
    .wa-float svg { width: 27px; height: 27px; fill: #fff; }

    /* ────────────────────────────────────────
       ANIMATIONS
    ──────────────────────────────────────── */
    @media (prefers-reduced-motion: no-preference) {
      .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
      }
      .reveal.in { opacity: 1; transform: none; }
      .reveal:nth-child(2) { transition-delay: 0.1s; }
      .reveal:nth-child(3) { transition-delay: 0.2s; }
      .reveal:nth-child(4) { transition-delay: 0.3s; }
    }

    @media print {
      #nav, .wa-float { display: none; }
      #hero { min-height: auto; }
    }
