    /* ── RESET & BASE ─────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Poppins', sans-serif;
      background: #FAFAF8;
      color: #1A1A1A;
      overflow-x: hidden;
    }

    /* ── TOKENS ───────────────────────────────────────────── */
    :root {
      --gold:       #C5A059;
      --gold-light: #D4B87A;
      --gold-pale:  #F0E6D0;
      --dark:       #1A1A1A;
      --mid:        #4A4A4A;
      --soft:       #7A7A7A;
      --bg:         #FAFAF8;
      --bg-section: #F5F2EC;
      --white:      #FFFFFF;
      --border:     #E8E2D8;
    }

    /* ── UTILITY ──────────────────────────────────────────── */
    .container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 40px; }
    .gold-line {
      display: block; width: 48px; height: 2px;
      background: var(--gold); margin-bottom: 20px;
    }
    .section-label {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px; font-weight: 600;
      letter-spacing: 3px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 8px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 3.5vw, 44px);
      font-weight: 600; line-height: 1.2;
      color: var(--dark); margin-bottom: 20px;
    }
    .section-subtitle {
      font-size: 16px; font-weight: 300; line-height: 1.8;
      color: var(--soft); max-width: 560px;
    }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--gold); color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-size: 12px; font-weight: 600;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 16px 36px; border: none; cursor: pointer;
      text-decoration: none; transition: background .25s, transform .2s;
    }
    .btn-primary:hover { background: #B08A3E; transform: translateY(-2px); }
    .btn-outline {
      display: inline-flex; align-items: center; gap: 10px;
      background: transparent; color: var(--dark);
      font-family: 'Montserrat', sans-serif;
      font-size: 12px; font-weight: 600;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 15px 34px;
      border: 1.5px solid var(--dark); cursor: pointer;
      text-decoration: none; transition: all .25s;
    }
    .btn-outline:hover {
      background: var(--dark); color: var(--white);
    }
    .btn-outline-gold {
      display: inline-flex; align-items: center; gap: 10px;
      background: transparent; color: var(--gold);
      font-family: 'Montserrat', sans-serif;
      font-size: 12px; font-weight: 600;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 15px 34px;
      border: 1.5px solid var(--gold); cursor: pointer;
      text-decoration: none; transition: all .25s;
    }
    .btn-outline-gold:hover {
      background: var(--gold); color: var(--white);
    }

    /* ── NAV ──────────────────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(250,250,248,0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow .3s;
    }
    nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.07); }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 76px; padding: 0 40px; max-width: 1160px; margin: 0 auto;
    }
    .nav-logo {
      text-decoration: none;
      display: flex; align-items: center;
    }
    .nav-links {
      display: flex; gap: 36px; list-style: none;
    }
    .nav-links a {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px; font-weight: 500; letter-spacing: 2px;
      text-transform: uppercase; color: var(--mid);
      text-decoration: none; transition: color .2s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px; font-weight: 600; letter-spacing: 2px;
      text-transform: uppercase; color: var(--white);
      background: var(--gold); padding: 12px 24px;
      text-decoration: none; transition: background .2s;
      border: none; cursor: pointer; display: inline-flex; align-items: center;
    }
    .nav-cta:hover { background: #B08A3E; }

    /* ── HERO ─────────────────────────────────────────────── */
    #hero {
      min-height: 100vh;
      background: linear-gradient(105deg, #F5F1E8 0%, #EDE7D9 50%, #E8E0CF 100%);
      display: flex; align-items: center;
      position: relative; overflow: hidden;
      padding-top: 76px;
      padding-bottom: 130px;
    }
    .hero-decor {
      position: absolute; right: 0; top: 0; bottom: 0;
      width: 45%;
      background: var(--dark);
      clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    }
    .hero-decor-img {
      position: absolute; right: 0; top: 0; bottom: 0;
      width: 45%;
      clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
      overflow: hidden;
    }
    .hero-carousel {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
    }
    .hero-carousel-slide {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      background-size: cover; background-position: center;
      opacity: 0;
      transition: opacity 1.2s ease;
    }
    .hero-carousel-slide.active { opacity: 1; }
    .hero-carousel-slide::after { display: none; }

    .hero-content {
      position: relative; z-index: 2;
      width: 55%; padding: 80px 0;
      text-align: left;
    }
    .hero-badge {
      display: inline-block;
      font-family: 'Montserrat', sans-serif;
      font-size: 10px; font-weight: 600; letter-spacing: 4px;
      text-transform: uppercase; color: var(--gold);
      border: 1px solid var(--gold-light);
      padding: 7px 18px; margin-bottom: 32px;
    }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 4.5vw, 58px);
      font-weight: 700; line-height: 1.15;
      color: var(--dark); margin-bottom: 24px;
    }
    .hero-title em {
      font-style: italic; color: var(--gold);
    }
    .hero-desc {
      font-size: 16px; font-weight: 300; line-height: 1.9;
      color: var(--mid); max-width: 480px; margin-bottom: 44px;
    }
    .hero-actions { display: flex; gap: 16px; flex-wrap: nowrap; align-items: center; width: max-content; }
    .hero-actions .btn-primary,
    .hero-actions .btn-outline { white-space: nowrap; }
    .hero-strip {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: var(--white);
      border-top: 1px solid var(--border);
      display: flex; align-items: stretch;
    }
    .hero-strip-item {
      flex: 1; padding: 22px 32px;
      display: flex; align-items: center; gap: 14px;
      border-right: 1px solid var(--border);
    }
    .hero-strip-item:last-child { border-right: none; }
    .strip-icon {
      width: 36px; height: 36px; flex-shrink: 0;
      background: var(--gold-pale); display: flex;
      align-items: center; justify-content: center;
    }
    .strip-icon svg { width: 18px; height: 18px; fill: var(--gold); }
    .strip-text strong {
      display: block; font-size: 13px; font-weight: 600;
      color: var(--dark); letter-spacing: .3px;
    }
    .strip-text span {
      font-size: 11px; color: var(--soft); font-weight: 300;
    }

    /* ── NUMBERS BAR ──────────────────────────────────────── */
    #numbers {
      background: var(--dark); padding: 64px 0;
    }
    .numbers-grid {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 0; text-align: center;
    }
    .number-item {
      padding: 20px 32px;
      border-right: 1px solid rgba(197,160,89,.25);
    }
    .number-item:last-child { border-right: none; }
    .num-value {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 4vw, 52px); font-weight: 700;
      color: var(--gold); line-height: 1;
      margin-bottom: 8px;
    }
    .num-label {
      font-family: 'Montserrat', sans-serif;
      font-size: 10px; font-weight: 500; letter-spacing: 2.5px;
      text-transform: uppercase; color: rgba(255,255,255,.55);
    }
    .num-note {
      font-size: 11px; color: rgba(197,160,89,.7);
      margin-top: 6px; font-style: italic;
    }

    /* ── SERVICES ─────────────────────────────────────────── */
    #servicos { padding: 120px 0; background: var(--bg); }
    .services-header {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 60px; align-items: end; margin-bottom: 72px;
    }
    .services-grid {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
    }
    .service-card {
      background: var(--white); padding: 48px 40px;
      border-top: 3px solid transparent;
      transition: border-color .3s, transform .3s, box-shadow .3s;
      cursor: default;
    }
    .service-card:hover {
      border-color: var(--gold);
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(0,0,0,.08);
    }
    .service-number {
      font-family: 'Playfair Display', serif;
      font-size: 48px; font-weight: 700; color: var(--gold-pale);
      line-height: 1; margin-bottom: 24px;
    }
    .service-title {
      font-family: 'Playfair Display', serif;
      font-size: 20px; font-weight: 600;
      color: var(--dark); margin-bottom: 16px; line-height: 1.3;
    }
    .service-desc {
      font-size: 14px; font-weight: 300; line-height: 1.85;
      color: var(--soft);
    }
    .service-tag {
      display: inline-block; margin-top: 24px;
      font-family: 'Montserrat', sans-serif;
      font-size: 10px; font-weight: 600; letter-spacing: 2px;
      text-transform: uppercase; color: var(--gold);
    }

    /* ── HOW IT WORKS ─────────────────────────────────────── */
    #como { padding: 120px 0; background: var(--bg-section); }
    .how-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 100px; align-items: center;
    }
    .how-steps { display: flex; flex-direction: column; gap: 0; }
    .step {
      display: flex; gap: 28px; padding: 32px 0;
      border-bottom: 1px solid var(--border);
    }
    .step:first-child { padding-top: 0; }
    .step:last-child { border-bottom: none; padding-bottom: 0; }
    .step-num {
      font-family: 'Playfair Display', serif;
      font-size: 13px; font-weight: 700; color: var(--gold);
      letter-spacing: 1px; min-width: 24px; padding-top: 2px;
    }
    .step-content strong {
      display: block; font-size: 15px; font-weight: 600;
      color: var(--dark); margin-bottom: 8px;
    }
    .step-content p {
      font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--soft);
    }
    .how-visual {
      position: relative;
    }
    .how-img {
      width: 100%; aspect-ratio: 3/4;
      object-fit: cover;
      background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=600&q=80') center/cover;
    }
    .how-accent {
      position: absolute; bottom: -24px; left: -24px;
      width: 160px; height: 160px;
      background: var(--gold); z-index: -1;
    }

    /* ── DIFFERENTIALS ────────────────────────────────────── */
    #diferenciais { padding: 120px 0; background: var(--dark); }
    .diff-header { margin-bottom: 72px; }
    .diff-header .section-title { color: var(--white); }
    .diff-header .section-subtitle { color: rgba(255,255,255,.5); }
    .diff-grid {
      display: grid; grid-template-columns: repeat(5,1fr); gap: 1px;
      background: rgba(197,160,89,.15);
    }
    .diff-card {
      background: var(--dark); padding: 40px 32px;
      transition: background .3s;
    }
    .diff-card:hover { background: #222; }
    .diff-icon {
      width: 44px; height: 44px; margin-bottom: 24px;
      border: 1px solid rgba(197,160,89,.4);
      display: flex; align-items: center; justify-content: center;
    }
    .diff-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; }
    .diff-title {
      font-family: 'Playfair Display', serif;
      font-size: 16px; font-weight: 600; color: var(--white);
      margin-bottom: 12px; line-height: 1.3;
    }
    .diff-desc {
      font-size: 13px; font-weight: 300; line-height: 1.8;
      color: rgba(255,255,255,.45);
    }

    /* ── PORTFOLIO ────────────────────────────────────────── */
    #portfolio { padding: 64px 0; background: var(--bg); }
    .portfolio-header {
      display: flex; align-items: flex-end;
      justify-content: space-between; margin-bottom: 56px;
    }
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto;
      gap: 16px;
    }
    .portfolio-card {
      position: relative; overflow: hidden;
      background: var(--dark); cursor: pointer;
      aspect-ratio: 4/3;
    }
    .portfolio-card.large {
      grid-column: span 2; grid-row: span 1;
      aspect-ratio: unset; min-height: 380px;
    }
    .portfolio-img {
      width: 100%; height: 100%;
      object-fit: cover; transition: transform .6s ease;
    }
    .p1 .portfolio-img { background: url('https://images.unsplash.com/photo-1600121848594-d8644e57abab?w=800&q=80') center/cover; }
    .p2 .portfolio-img { background: url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=600&q=80') center/cover; }
    .p3 .portfolio-img { background: url('https://images.unsplash.com/photo-1565953522043-baea26b83b7e?w=600&q=80') center/cover; }
    .p4 .portfolio-img { background: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=600&q=80') center/cover; }
    .p5 .portfolio-img { background: url('https://images.unsplash.com/photo-1631679706909-1844bbd07221?w=600&q=80') center/cover; }
    .portfolio-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(0deg, rgba(26,26,26,.85) 0%, transparent 60%);
      display: flex; flex-direction: column;
      justify-content: flex-end; padding: 28px;
      opacity: 0; transition: opacity .35s;
    }
    .portfolio-card:hover .portfolio-overlay { opacity: 1; }
    .portfolio-card:hover .portfolio-img { transform: scale(1.04); }
    .p-tag {
      font-family: 'Montserrat', sans-serif;
      font-size: 10px; font-weight: 600; letter-spacing: 2.5px;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 8px;
    }
    .p-name {
      font-family: 'Playfair Display', serif;
      font-size: 20px; font-weight: 600; color: var(--white);
      line-height: 1.2; margin-bottom: 4px;
    }
    .p-loc {
      font-size: 12px; font-weight: 300; color: rgba(255,255,255,.6);
    }
    /* Always-visible label on cards */
    .portfolio-label {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 20px; background: linear-gradient(0deg, rgba(26,26,26,.7) 0%, transparent 100%);
    }
    .portfolio-label .p-name { font-size: 16px; }

    /* ── DEPOIMENTOS ──────────────────────────────────────── */
    #depoimentos { padding: 120px 0; background: var(--bg-section); }
    .test-header { margin-bottom: 64px; }
    .test-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      align-items: start;
    }
    .test-card {
      background: var(--white);
      border-left: 4px solid var(--gold);
      border-radius: 0 14px 14px 14px;
      padding: 28px 28px 24px 24px;
      position: relative;
      box-shadow: 0 4px 24px rgba(0,0,0,.07);
      transition: box-shadow .3s, transform .3s;
    }
    .test-card::before {
      content: '';
      position: absolute;
      top: 0; left: -13px;
      width: 0; height: 0;
      border-top: 12px solid var(--gold);
      border-left: 13px solid transparent;
    }
    .test-card:hover {
      box-shadow: 0 12px 40px rgba(0,0,0,.11);
      transform: translateY(-4px);
    }
    .test-wpp-icon {
      width: 20px; height: 20px;
      color: var(--gold); opacity: .5;
      margin-bottom: 14px;
    }
    .test-wpp-icon svg { width: 100%; height: 100%; }
    .test-quote {
      font-size: 15px; font-weight: 300; line-height: 1.85;
      color: var(--mid); margin: 0; font-style: normal;
    }

    /* ── FAQ ──────────────────────────────────────────────── */
    #faq { padding: 120px 0; background: var(--bg); }
    .faq-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 100px;
    }
    .faq-list { display: flex; flex-direction: column; gap: 0; }
    .faq-item {
      border-bottom: 1px solid var(--border); padding: 24px 0;
    }
    .faq-item:first-child { border-top: 1px solid var(--border); }
    .faq-q {
      font-size: 15px; font-weight: 500; color: var(--dark);
      cursor: pointer; display: flex; justify-content: space-between;
      align-items: flex-start; gap: 16px; user-select: none;
    }
    .faq-q .toggle {
      font-size: 20px; color: var(--gold); flex-shrink: 0;
      line-height: 1; transition: transform .25s;
    }
    .faq-item.open .toggle { transform: rotate(45deg); }
    .faq-a {
      font-size: 14px; font-weight: 300; line-height: 1.85;
      color: var(--soft); max-height: 0; overflow: hidden;
      transition: max-height .35s ease, padding .3s;
    }
    .faq-item.open .faq-a { max-height: 300px; padding-top: 14px; }

    /* ── CTA FINAL ────────────────────────────────────────── */
    #cta-final {
      padding: 120px 0;
      background:
        linear-gradient(rgba(26,26,26,.88), rgba(26,26,26,.88)),
        url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1400&q=80') center/cover fixed;
    }
    .cta-inner { text-align: center; }
    .cta-inner .section-label { justify-content: center; display: flex; }
    .cta-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(30px, 4vw, 52px); font-weight: 700;
      color: var(--white); line-height: 1.2;
      margin-bottom: 20px; margin-top: 12px;
    }
    .cta-title em { font-style: italic; color: var(--gold); }
    .cta-sub {
      font-size: 16px; font-weight: 300; color: rgba(255,255,255,.65);
      max-width: 520px; margin: 0 auto 48px; line-height: 1.8;
    }
    .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .cta-contact {
      margin-top: 56px; padding-top: 40px;
      border-top: 1px solid rgba(255,255,255,.12);
      display: flex; justify-content: center; gap: 60px; flex-wrap: wrap;
    }
    .contact-item {
      display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.6);
      font-size: 14px;
    }
    .contact-item svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; }

    /* ── FOOTER ───────────────────────────────────────────── */
    footer {
      background: #111; padding: 64px 0 32px;
      border-top: 1px solid rgba(197,160,89,.2);
    }
    .footer-top {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px; margin-bottom: 56px;
    }
    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 22px; font-weight: 700; color: var(--white);
      margin-bottom: 16px; display: block;
    }
    .footer-logo span { color: var(--gold); }
    .footer-desc {
      font-size: 13px; font-weight: 300; line-height: 1.85;
      color: rgba(255,255,255,.4); max-width: 280px; margin-bottom: 28px;
    }
    .footer-social { display: flex; gap: 12px; }
    .social-btn {
      width: 36px; height: 36px; border: 1px solid rgba(197,160,89,.3);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.5); font-size: 13px;
      text-decoration: none; transition: all .2s;
    }
    .social-btn:hover { border-color: var(--gold); color: var(--gold); }
    .footer-col-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 10px; font-weight: 600; letter-spacing: 2.5px;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 20px;
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-links a {
      font-size: 13px; font-weight: 300; color: rgba(255,255,255,.45);
      text-decoration: none; transition: color .2s;
    }
    .footer-links a:hover { color: var(--white); }
    .footer-contact-item {
      font-size: 13px; font-weight: 300; color: rgba(255,255,255,.45);
      margin-bottom: 10px; display: flex; align-items: flex-start; gap: 8px;
    }
    .footer-contact-item strong { color: rgba(255,255,255,.7); font-weight: 400; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 28px;
      display: flex; justify-content: space-between; align-items: center;
    }
    .footer-copy {
      font-size: 12px; font-weight: 300; color: rgba(255,255,255,.3);
    }
    .footer-badge {
      display: flex; align-items: center; gap: 8px;
      font-size: 11px; color: rgba(197,160,89,.5);
      font-family: 'Montserrat', sans-serif; letter-spacing: 1px;
    }
    .footer-badge::before {
      content: ''; display: block;
      width: 24px; height: 1px; background: var(--gold); opacity: .4;
    }

    /* ── WHATSAPP FLOAT ───────────────────────────────────── */
    .wa-float {
      position: fixed; bottom: 32px; right: 32px; z-index: 999;
      width: 56px; height: 56px; border-radius: 50%;
      background: #25D366; display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,.4);
      text-decoration: none; transition: transform .25s, box-shadow .25s;
    }
    .wa-float:hover {
      transform: scale(1.1) translateY(-3px);
      box-shadow: 0 8px 28px rgba(37,211,102,.5);
    }
    .wa-float svg { width: 28px; height: 28px; fill: #fff; }

    /* ── MOCKUP BANNER ────────────────────────────────────── */
    .mockup-banner {
      position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
      background: linear-gradient(90deg, #1A1A1A, #2A1F00);
      padding: 10px 20px;
      display: flex; align-items: center; justify-content: center; gap: 16px;
      font-family: 'Montserrat', sans-serif;
    }
    .mockup-banner span {
      font-size: 11px; font-weight: 500; letter-spacing: 1.5px;
      text-transform: uppercase; color: rgba(255,255,255,.6);
    }
    .mockup-banner strong {
      font-size: 11px; letter-spacing: 2px;
      text-transform: uppercase; color: var(--gold);
    }
    .mockup-banner .dot {
      width: 5px; height: 5px; border-radius: 50%;
      background: var(--gold); opacity: .5;
    }




    /* ── PREMIUM VISUAL UPGRADE ─────────────────────────────
       Mantém a paleta original e adiciona profundidade, textura,
       glassmorphism, sombras premium e melhor responsividade.
    ───────────────────────────────────────────────────────── */
    :root {
      --shadow-soft: 0 16px 50px rgba(0,0,0,.06);
      --shadow-premium: 0 28px 80px rgba(0,0,0,.10);
      --glass: rgba(255,255,255,.74);
    }

    body {
      background:
        radial-gradient(circle at top left, rgba(197,160,89,.08), transparent 28%),
        var(--bg);
      text-rendering: geometricPrecision;
      -webkit-font-smoothing: antialiased;
    }

    .container { width: 100%; max-width: 1160px; }

    nav {
      background: rgba(250,250,248,.74);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(197,160,89,.10);
    }

    nav.scrolled {
      box-shadow: 0 14px 44px rgba(0,0,0,.06);
    }

    .nav-logo img {
      filter: drop-shadow(0 6px 14px rgba(0,0,0,.08));
    }

    .nav-links a {
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 0;
      height: 1px;
      background: var(--gold);
      transition: width .3s ease;
    }

    .nav-links a:hover::after { width: 100%; }

    .nav-cta,
    .btn-primary {
      background: linear-gradient(135deg, #C5A059 0%, #B78B3D 100%);
      box-shadow:
        0 14px 34px rgba(197,160,89,.22),
        inset 0 1px 0 rgba(255,255,255,.22);
    }

    .nav-cta:hover,
    .btn-primary:hover {
      background: linear-gradient(135deg, #D4B87A 0%, #B08A3E 100%);
      transform: translateY(-3px);
      box-shadow:
        0 20px 48px rgba(197,160,89,.30),
        inset 0 1px 0 rgba(255,255,255,.22);
    }

    .btn-primary,
    .btn-outline,
    .btn-outline-gold,
    .nav-cta {
      border-radius: 2px;
    }

    .btn-outline {
      background: rgba(255,255,255,.50);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(26,26,26,.18);
    }

    .btn-outline:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 44px rgba(0,0,0,.10);
    }

    #hero {
      background:
        radial-gradient(circle at 20% 28%, rgba(197,160,89,.16), transparent 32%),
        linear-gradient(105deg, #F7F2E8 0%, #EEE7D9 50%, #E5DCCB 100%);
      isolation: isolate;
    }

    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right,
          rgba(250,250,248,.98) 18%,
          rgba(250,250,248,.90) 42%,
          rgba(250,250,248,.22) 67%,
          rgba(0,0,0,.22) 100%);
      z-index: 1;
      pointer-events: none;
    }

    #hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(197,160,89,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197,160,89,.045) 1px, transparent 1px);
      background-size: 84px 84px;
      opacity: .42;
      z-index: 1;
      pointer-events: none;
    }

    .hero-content {
      z-index: 3;
      position: relative;
    }

    .hero-content::before { content: none; }

    .hero-badge {
      background: rgba(255,255,255,.45);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
    }

    .hero-title {
      font-size: clamp(42px, 5vw, 72px);
      line-height: .99;
      letter-spacing: -2px;
      max-width: 780px;
      text-wrap: balance;
    }

    .hero-title em {
      position: relative;
      z-index: 1;
    }

    .hero-title em::after {
      content: '';
      position: absolute;
      left: -2px;
      right: -2px;
      bottom: 9px;
      height: 12px;
      background: rgba(197,160,89,.13);
      z-index: -1;
    }

    .hero-desc {
      font-size: 17px;
      color: #505050;
      max-width: 560px;
    }

    .hero-decor-img {
      z-index: 0;
      box-shadow: -28px 0 80px rgba(0,0,0,.16);
    }

    .hero-decor-img::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to left, rgba(0,0,0,.48), transparent 35%),
        linear-gradient(to top, rgba(0,0,0,.32), transparent 50%);
      z-index: 2;
      pointer-events: none;
    }

    .hero-carousel-slide {
      transform: scale(1.02);
      transition: opacity 1.2s ease, transform 6s ease;
    }

    .hero-carousel-slide.active { transform: scale(1.08); }

    .hero-strip {
      z-index: 4;
      background: rgba(255,255,255,.76);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-top: 1px solid rgba(255,255,255,.55);
      box-shadow: 0 -14px 50px rgba(0,0,0,.05);
    }

    .hero-strip-item {
      position: relative;
      border-right: none;
    }

    .hero-strip-item::after {
      content: '';
      position: absolute;
      right: 0;
      top: 28%;
      width: 1px;
      height: 44%;
      background: rgba(197,160,89,.24);
    }

    .hero-strip-item:last-child::after { display: none; }

    .strip-icon {
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(240,230,208,.92), rgba(255,255,255,.75));
      box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
    }

    #numbers {
      background:
        radial-gradient(circle at top, rgba(197,160,89,.10), transparent 34%),
        linear-gradient(180deg, #1A1A1A 0%, #111 100%);
      position: relative;
    }

    .number-item {
      border-right: 1px solid rgba(197,160,89,.18);
    }

    #servicos,
    #portfolio,
    #faq {
      position: relative;
      background:
        radial-gradient(circle at top right, rgba(197,160,89,.07), transparent 28%),
        var(--bg);
    }

    #servicos::before,
    #portfolio::before,
    #faq::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(197,160,89,.025) 1px, transparent 1px);
      background-size: 100% 72px;
      pointer-events: none;
    }

    .services-header,
    .portfolio-header,
    .test-header,
    .diff-header {
      position: relative;
      z-index: 1;
    }

    .section-title {
      letter-spacing: -.8px;
      text-wrap: balance;
    }

    .section-label {
      position: relative;
      display: inline-block;
    }

    .section-label::after {
      content: '';
      display: inline-block;
      width: 34px;
      height: 1px;
      background: rgba(197,160,89,.55);
      margin-left: 14px;
      vertical-align: middle;
    }

    .services-grid {
      gap: 18px;
      position: relative;
      z-index: 1;
    }

    .service-card {
      background: rgba(255,255,255,.82);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      padding: 56px 42px;
      border: 1px solid rgba(197,160,89,.10);
      border-top: 3px solid transparent;
      box-shadow:
        0 12px 40px rgba(0,0,0,.035),
        inset 0 1px 0 rgba(255,255,255,.60);
    }

    .service-card:hover {
      border-color: var(--gold);
      transform: translateY(-10px);
      background: rgba(255,255,255,.96);
      box-shadow:
        0 28px 70px rgba(0,0,0,.09),
        0 0 0 1px rgba(197,160,89,.06);
    }

    .service-number {
      font-size: 64px;
      color: rgba(197,160,89,.16);
      letter-spacing: -2px;
    }

    #como,
    #depoimentos {
      background:
        radial-gradient(circle at bottom left, rgba(197,160,89,.10), transparent 30%),
        var(--bg-section);
    }

    .how-img {
      border-radius: 22px;
      box-shadow: var(--shadow-premium);
      position: relative;
      overflow: hidden;
    }

    .how-visual::after {
      content: 'D’MESQUITA';
      position: absolute;
      right: -26px;
      top: 40px;
      writing-mode: vertical-rl;
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      letter-spacing: 5px;
      color: rgba(197,160,89,.45);
    }

    .how-accent {
      border-radius: 20px;
      background: linear-gradient(135deg, var(--gold), #B88A35);
      box-shadow: 0 20px 50px rgba(197,160,89,.22);
    }

    .step {
      transition: padding-left .25s ease, border-color .25s ease;
    }

    .step:hover {
      padding-left: 12px;
      border-color: rgba(197,160,89,.35);
    }

    #diferenciais {
      background:
        radial-gradient(circle at top left, rgba(197,160,89,.10), transparent 30%),
        radial-gradient(circle at bottom right, rgba(197,160,89,.07), transparent 35%),
        linear-gradient(180deg, #151515 0%, #0F0F0F 100%);
      position: relative;
      overflow: hidden;
    }

    #diferenciais::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(197,160,89,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197,160,89,.035) 1px, transparent 1px);
      background-size: 74px 74px;
      opacity: .48;
      pointer-events: none;
    }

    #diferenciais .container { position: relative; z-index: 1; }

    .diff-grid {
      gap: 14px;
      background: transparent;
    }

    .diff-card {
      background: rgba(22,22,22,.78);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(197,160,89,.10);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
    }

    .diff-card:hover {
      transform: translateY(-7px);
      background: rgba(30,30,30,.92);
      border-color: rgba(197,160,89,.26);
      box-shadow: 0 22px 55px rgba(0,0,0,.30);
    }

    .diff-icon {
      background: rgba(197,160,89,.06);
      border-radius: 50%;
    }

    .portfolio-grid {
      gap: 20px;
      position: relative;
      z-index: 1;
    }

    .portfolio-card {
      border-radius: 22px;
      box-shadow: 0 18px 54px rgba(0,0,0,.10);
      isolation: isolate;
    }

    .portfolio-img {
      transition: transform 1.2s cubic-bezier(.2,.8,.2,1), filter .5s ease;
    }

    .portfolio-card:hover .portfolio-img {
      transform: scale(1.08);
      filter: saturate(1.04) contrast(1.03);
    }

    .portfolio-overlay {
      background: linear-gradient(0deg, rgba(10,10,10,.94) 0%, rgba(10,10,10,.28) 55%, transparent 100%);
    }

    .portfolio-label {
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      background: rgba(10,10,10,.36);
      border-top: 1px solid rgba(255,255,255,.10);
    }

    .test-grid {
      position: relative;
      z-index: 1;
    }

    .test-card {
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-left: 4px solid var(--gold);
      box-shadow: 0 6px 28px rgba(0,0,0,.06);
      transition: transform .3s ease, box-shadow .3s ease;
    }

    .test-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(0,0,0,.10);
    }

    .faq-item {
      transition: padding-left .25s ease, border-color .25s ease;
    }

    .faq-item:hover {
      padding-left: 10px;
      border-color: rgba(197,160,89,.32);
    }

    #cta-final {
      position: relative;
      overflow: hidden;
      padding: 140px 0;
      background:
        radial-gradient(circle at top left, rgba(197,160,89,.14), transparent 28%),
        linear-gradient(rgba(10,10,10,.88), rgba(10,10,10,.91)),
        url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1400&q=80') center/cover fixed;
    }

    #cta-final::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(197,160,89,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197,160,89,.035) 1px, transparent 1px);
      background-size: 92px 92px;
      opacity: .44;
      pointer-events: none;
    }

    #cta-final .container { position: relative; z-index: 1; }

    .cta-title {
      line-height: 1.05;
      letter-spacing: -1.5px;
      text-wrap: balance;
    }

    .cta-contact {
      background: rgba(255,255,255,.045);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255,255,255,.08);
      padding: 28px;
      max-width: 980px;
      margin-left: auto;
      margin-right: auto;
    }

    footer {
      background:
        radial-gradient(circle at top left, rgba(197,160,89,.08), transparent 28%),
        #0F0F0F;
    }

    .wa-float {
      box-shadow: 0 12px 34px rgba(37,211,102,.38);
    }

    @media (max-width: 1080px) {
      .container { padding: 0 28px; }
      .hero-content { width: 62%; }
      .hero-decor-img { width: 42%; }
      .diff-grid { grid-template-columns: repeat(2,1fr); }
      .services-grid,
      .test-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 820px) {
      .nav-inner { height: auto; min-height: 74px; padding: 16px 24px; gap: 16px; justify-content: space-between; position: static; }
      .nav-logo { position: static; transform: none; }
      .nav-links { display: none; }
      .nav-cta { padding: 11px 16px; font-size: 10px; }
      .hero-actions { flex-direction: column; align-items: flex-start; width: auto; gap: 12px; }
      #hero { min-height: auto; padding: 118px 0 0; display: block; }
      #hero::before { background: none; }
      .hero-content { width: 100%; padding: 30px 0 360px; }
      .hero-title { font-size: clamp(30px, 8.5vw, 46px); letter-spacing: -1.2px; }
      .hero-desc { font-size: 15px; max-width: 100%; }
      .hero-decor-img {
        width: 100%;
        height: 360px;
        top: auto;
        left: 0;
        bottom: 138px;
        clip-path: none;
      }
      .hero-strip { position: relative; display: grid; grid-template-columns: 1fr; }
      .hero-strip-item { padding: 18px 24px; }
      .hero-strip-item::after { display: none; }
      .numbers-grid { grid-template-columns: 1fr; }
      .number-item { border-right: none; border-bottom: 1px solid rgba(197,160,89,.20); }
      .number-item:last-child { border-bottom: none; }
      .services-header,
      .how-inner,
      .faq-inner { grid-template-columns: 1fr; gap: 44px; }
      .portfolio-header { display: block; }
      .portfolio-header .btn-outline { margin-top: 18px; }
      .portfolio-grid { grid-template-columns: 1fr; }
      .portfolio-card.large { grid-column: span 1; min-height: 320px; }
      .diff-grid { grid-template-columns: 1fr; }
      .cta-contact { display: grid; gap: 18px; justify-content: stretch; }
      .footer-top,
      .footer-bottom { grid-template-columns: 1fr; display: grid; gap: 28px; }
    }

    @media (max-width: 520px) {
      .container { padding: 0 22px; }
      .nav-logo img { height: 42px !important; }
      .nav-cta { display: none; }
      .nav-inner { justify-content: flex-start; }
      .nav-logo { position: static; transform: none; }
      .cta-actions { flex-direction: column; }
      .hero-actions .btn-primary,
      .hero-actions .btn-outline { font-size: 10px; padding: 13px 18px; letter-spacing: 1.5px; }
      .cta-actions .btn-primary,
      .cta-actions .btn-outline,
      .cta-actions .btn-outline-gold { width: 100%; justify-content: center; text-align: center; }
      #servicos,
      #como,
      #diferenciais,
      #depoimentos,
      #faq,
      #cta-final { padding: 84px 0; }
      #portfolio { padding: 48px 0; }
      .service-card,
      .diff-card { padding: 34px 26px; }
      .test-card { padding: 22px 22px 20px 18px; }
      .wa-float { right: 20px; bottom: 20px; width: 52px; height: 52px; }
    }

    /* ── VÍDEO COMO FUNCIONA ──────────────────────────────── */
    .how-video-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 3/4;
      overflow: hidden;
      border-radius: 22px;
      box-shadow: 0 28px 80px rgba(0,0,0,.10);
    }
    .how-video-wrap video {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
    }
    .video-sound-btn {
      position: absolute; bottom: 20px; right: 20px;
      width: 44px; height: 44px;
      background: rgba(26,26,26,.65);
      border: 1px solid rgba(255,255,255,.3);
      border-radius: 50%; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s, border-color .2s;
      z-index: 2;
    }
    .video-sound-btn:hover {
      background: rgba(197,160,89,.35);
      border-color: var(--gold);
    }
    .video-sound-btn svg {
      width: 18px; height: 18px;
      stroke: #fff; fill: none; stroke-width: 2;
      stroke-linecap: round; stroke-linejoin: round;
    }

    /* ── PORTFÓLIO: GRADE BENTO (90% DA SEÇÃO) ───────────── */
    .portfolio-bento {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(3, 160px);
      gap: 10px;
      position: relative; z-index: 1;
      width: 90%;
      margin: 32px auto 0;
    }
    .bento-item {
      position: relative; overflow: hidden;
      background: var(--dark); cursor: pointer;
      border-radius: 14px;
      box-shadow: 0 12px 40px rgba(0,0,0,.10);
    }
    .bento-large {
      grid-column: span 2;
      grid-row: span 2;
    }
    .bento-wide { grid-column: span 2; }
    .bento-item img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
      transition: transform .6s cubic-bezier(.2,.8,.2,1), filter .5s ease;
    }
    .bento-item:hover img {
      transform: scale(1.06);
      filter: saturate(1.04) contrast(1.03);
    }
    .bento-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(0deg, rgba(10,10,10,.92) 0%, rgba(10,10,10,.2) 55%, transparent 100%);
      display: flex; flex-direction: column;
      justify-content: flex-end; padding: 22px;
      opacity: 0; transition: opacity .35s;
    }
    .bento-item:hover .bento-overlay { opacity: 1; }

    /* ── LIGHTBOX ─────────────────────────────────────────── */
    .lightbox {
      position: fixed; inset: 0; z-index: 9000;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none;
      transition: opacity .3s;
    }
    .lightbox.active { opacity: 1; pointer-events: all; }
    .lightbox-bg {
      position: absolute; inset: 0;
      background: rgba(0,0,0,.93);
    }
    .lightbox-inner {
      position: relative; z-index: 1;
      max-width: 90vw; max-height: 88vh;
      display: flex; flex-direction: column; align-items: center;
    }
    .lightbox-inner img {
      max-width: 100%; max-height: 80vh;
      object-fit: contain; display: block;
      border-radius: 8px;
    }
    .lightbox-caption {
      margin-top: 16px;
      color: rgba(255,255,255,.65);
      font-size: 14px; font-weight: 300;
      text-align: center;
      display: flex; align-items: center; gap: 12px;
    }
    .lb-tag {
      font-family: 'Montserrat', sans-serif;
      font-size: 10px; font-weight: 600;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--gold);
      border: 1px solid rgba(197,160,89,.4);
      padding: 3px 10px;
    }
    .lightbox-close, .lightbox-prev, .lightbox-next {
      position: absolute; z-index: 2;
      background: rgba(26,26,26,.7);
      border: 1px solid rgba(197,160,89,.3);
      color: var(--white); cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s, border-color .2s;
    }
    .lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
      background: rgba(197,160,89,.3); border-color: var(--gold);
    }
    .lightbox-close {
      top: 20px; right: 20px;
      width: 44px; height: 44px; border-radius: 50%;
    }
    .lightbox-close svg {
      width: 18px; height: 18px; stroke: currentColor;
      fill: none; stroke-width: 2; stroke-linecap: round;
    }
    .lightbox-prev, .lightbox-next {
      top: 50%; transform: translateY(-50%);
      width: 52px; height: 52px; border-radius: 50%;
    }
    .lightbox-prev { left: 20px; }
    .lightbox-next { right: 20px; }
    .lightbox-prev svg, .lightbox-next svg {
      width: 22px; height: 22px; stroke: currentColor;
      fill: none; stroke-width: 2;
      stroke-linecap: round; stroke-linejoin: round;
    }

    /* ── LINKS DE CONTATO ─────────────────────────────────── */
    .contact-link {
      color: inherit; text-decoration: none;
      transition: color .2s;
    }
    .contact-link:hover { color: var(--white); }
    .footer-contact-link {
      color: inherit; text-decoration: none;
      transition: color .2s;
    }
    .footer-contact-link:hover { color: rgba(255,255,255,.8); }

    /* ── LOGO DO RODAPÉ ───────────────────────────────────── */
    .footer-logo-img {
      height: 40px; width: auto;
      display: block; margin-bottom: 16px;
      opacity: .9;
    }

    /* ── RESPONSIVO: GRADE BENTO ──────────────────────────── */
    @media (max-width: 820px) {
      .portfolio-bento { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 180px); width: 94%; }
      .bento-large { grid-row: span 1; }
      .lightbox-prev { left: 8px; }
      .lightbox-next { right: 8px; }
      .lightbox-prev, .lightbox-next { width: 42px; height: 42px; }
    }
    @media (max-width: 520px) {
      .portfolio-bento { grid-template-columns: 1fr; grid-template-rows: none; width: 96%; }
      .bento-large, .bento-wide { grid-column: span 1; }
      .bento-item { height: 180px; }
      .how-video-wrap { aspect-ratio: 4/3; }
    }

    /* ── MODAL DE ORÇAMENTO ───────────────────────────────── */
    .lead-modal {
      position: fixed; inset: 0; z-index: 9500;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none;
      transition: opacity .3s;
      padding: 24px;
    }
    .lead-modal.active { opacity: 1; pointer-events: all; }
    .lead-modal-bg {
      position: absolute; inset: 0;
      background: rgba(10,10,10,.82);
    }
    .lead-modal-inner {
      position: relative; z-index: 1;
      background: var(--white);
      width: 100%; max-width: 480px;
      max-height: 90vh; overflow-y: auto;
      padding: 48px 40px 40px;
      transform: translateY(16px) scale(.98);
      transition: transform .3s;
    }
    .lead-modal.active .lead-modal-inner { transform: translateY(0) scale(1); }
    .lead-modal-close {
      position: absolute; top: 18px; right: 18px;
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--bg-section); border: none;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: background .2s;
    }
    .lead-modal-close:hover { background: var(--gold-pale); }
    .lead-modal-close svg {
      width: 16px; height: 16px; stroke: var(--dark);
      fill: none; stroke-width: 2; stroke-linecap: round;
    }
    .lead-modal-title {
      font-family: 'Playfair Display', serif;
      font-size: 26px; font-weight: 600;
      color: var(--dark); margin-bottom: 8px;
    }
    .lead-modal-sub {
      font-size: 14px; font-weight: 300; line-height: 1.7;
      color: var(--soft); margin-bottom: 28px;
    }
    .lead-form { display: flex; flex-direction: column; gap: 18px; }
    .lead-field { display: flex; flex-direction: column; gap: 7px; }
    .lead-field label {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--mid);
    }
    .lead-field input,
    .lead-field select {
      font-family: 'Poppins', sans-serif;
      font-size: 14px; color: var(--dark);
      background: var(--bg-section);
      border: 1px solid var(--border);
      padding: 13px 14px;
      outline: none; transition: border-color .2s;
      width: 100%;
    }
    .lead-field input:focus,
    .lead-field select:focus { border-color: var(--gold); }
    .lead-form .btn-primary {
      justify-content: center; width: 100%;
      margin-top: 8px; font-size: 12px;
    }
    .lead-form .btn-primary:disabled { opacity: .6; cursor: not-allowed; transform: none; }
    .lead-form-error {
      font-size: 13px; color: #B0402E; display: none;
    }
    .lead-form-error.show { display: block; }
