*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --gold:    #e8a200;
      --gold-lt: #f5bc2e;
      --black:   #0a0a0a;
      --dark:    #111111;
      --card:    #181818;
      --border:  #2a2a2a;
      --text:    #f0f0f0;
      --muted:   #999999;
      --green:   #4caf50;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Barlow', sans-serif;
      background: var(--black);
      color: var(--text);
      line-height: 1.6;
    }

    /* ─── NAVBAR ─────────────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 48px;
      background: rgba(10,10,10,.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .logo-icon { height: 26px; width: auto; }
    .logo-divider {
      width: 1px; height: 28px;
      background: var(--border);
    }
    .logo-info { display: flex; flex-direction: column; line-height: 1.2; }
    .logo-sub {
      font-size: .55rem; letter-spacing: 2px; text-transform: uppercase;
      color: var(--gold); font-weight: 700;
    }
    .logo-dealer {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .88rem; font-weight: 700; color: var(--text);
      letter-spacing: .5px;
    }
    .logo-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900; font-size: 1.7rem; letter-spacing: 2px;
      color: #fff;
    }

    .hamburger {
      display: none;
      align-items: center; justify-content: center;
      flex-direction: column; gap: 5px;
      background: none;
      border: 1px solid var(--border);
      border-radius: 6px;
      cursor: pointer;
      width: 40px; height: 40px;
      flex-shrink: 0;
      transition: border-color .2s;
    }
    .hamburger:hover { border-color: var(--gold); }
    .hamburger span {
      display: block; width: 20px; height: 2px;
      background: var(--text); border-radius: 2px;
      transform-origin: center;
      transition: transform .25s ease, opacity .25s ease;
    }
    .hamburger.open { border-color: var(--gold); }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* nav-links vive FORA do nav para evitar herdar stacking context do z-index:100 do nav */
    .nav-links {
      position: fixed;
      top: 0; right: 48px;
      height: 57px;
      display: flex; flex-direction: row;
      align-items: center;
      gap: 32px; list-style: none;
      z-index: 101;
    }
    .nav-links a {
      text-decoration: none; color: var(--muted);
      font-size: .875rem; font-weight: 500; letter-spacing: 1px;
      text-transform: uppercase;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--gold); }

    .nav-cta {
      background: var(--gold); color: #000 !important;
      padding: 8px 20px; border-radius: 4px;
      font-weight: 700 !important;
      transition: background .2s !important;
    }
    .nav-cta:hover { background: var(--gold-lt) !important; color: #000 !important; }

    /* ─── HERO ───────────────────────────────────────────── */
    #hero {
      min-height: 100vh;
      background: url('images/hero-full.png') right center / cover no-repeat;
      position: relative;
      display: flex; align-items: center;
      overflow: hidden;
    }
    #hero::before {
      content: '';
      position: absolute; inset: 0; z-index: 0;
      background: linear-gradient(90deg,
        rgba(10,10,10,.95) 0%,
        rgba(10,10,10,.85) 32%,
        rgba(10,10,10,.45) 58%,
        rgba(10,10,10,0)   78%);
    }
    .hero-inner {
      position: relative; z-index: 1;
      display: flex; flex-direction: column; justify-content: center;
      padding: 140px 64px 100px;
      max-width: 700px;
      width: 100%;
    }
    .hero-content { display: flex; flex-direction: column; }
    .hero-tag {
      display: inline-block;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem; font-weight: 700; letter-spacing: 4px;
      text-transform: uppercase; color: var(--gold);
      border: 1px solid var(--gold);
      padding: 6px 16px; border-radius: 2px;
      margin-bottom: 20px;
    }
    .hero-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(3rem, 7vw, 5.5rem);
      font-weight: 900; line-height: .95;
      text-transform: uppercase; letter-spacing: -1px;
      color: #fff;
    }
    .hero-title span { color: var(--gold); }
    .hero-sub {
      margin-top: 20px;
      font-size: 1.1rem; font-weight: 300; color: #ccc;
      max-width: 520px;
    }
    .hero-btn {
      display: inline-block; margin-top: 36px;
      background: var(--gold); color: #000;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800; font-size: 1rem; letter-spacing: 2px;
      text-transform: uppercase; text-decoration: none;
      padding: 14px 36px; border-radius: 4px;
      transition: background .2s, transform .15s;
    }
    .hero-btn:hover { background: var(--gold-lt); transform: translateY(-2px); }

    .hero-stats {
      display: flex; flex-wrap: wrap; gap: 32px;
      margin-top: 48px; padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,.12);
    }
    .stat { text-align: center; }
    .stat-val {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2.2rem; font-weight: 900; color: var(--gold);
    }
    .stat-lbl {
      font-size: .75rem; letter-spacing: 1.5px; text-transform: uppercase;
      color: var(--muted);
    }

    /* ─── SECTION BASE ───────────────────────────────────── */
    section { padding: 100px 48px; }
    .section-tag {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .75rem; font-weight: 700; letter-spacing: 4px;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(2rem, 5vw, 3.4rem);
      font-weight: 900; text-transform: uppercase;
      line-height: 1; margin-bottom: 24px;
    }
    .section-title em { color: var(--gold); font-style: normal; }
    .divider {
      width: 56px; height: 3px;
      background: var(--gold); margin-bottom: 36px;
    }

    /* ─── SOBRE NÓS ──────────────────────────────────────── */
    #sobre {
      background: var(--dark);
      position: relative; overflow: hidden;
    }
    #sobre::before {
      content: '';
      position: absolute; top: -10%; right: -8%;
      width: 520px; height: 520px;
      background: radial-gradient(ellipse, rgba(232,162,0,.07) 0%, transparent 68%);
      pointer-events: none;
    }
    .sobre-bolt {
      position: absolute; right: 0; top: 0;
      height: 100%; width: auto;
      opacity: .04; pointer-events: none;
    }
    .sobre-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
      align-items: center; max-width: 1200px; margin: 0 auto;
    }
    .sobre-text p {
      color: #bbb; font-size: 1.05rem; font-weight: 300;
      margin-bottom: 16px;
    }
    .sobre-image {
      position: relative; border-radius: 8px; overflow: hidden;
    }
    .sobre-image img { width: 100%; display: block; border-radius: 8px; }
    .sobre-image::after {
      content: '';
      position: absolute; inset: 0;
      border: 2px solid var(--gold);
      border-radius: 8px;
      opacity: .3;
    }
    .feature-list {
      display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
      margin-top: 32px;
    }
    .feature-item {
      display: flex; align-items: flex-start; gap: 12px;
    }
    .feature-icon {
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(232,162,0,.12);
      border: 1px solid rgba(232,162,0,.3);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .feature-icon svg { width: 18px; height: 18px; fill: var(--gold); display: block; }
    .feature-item h4 {
      font-size: .85rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: 1px; margin-bottom: 2px;
    }
    .feature-item p { font-size: .8rem; color: var(--muted); }

    /* ─── SERVIÇOS ───────────────────────────────────────── */
    #servicos {
      background: var(--black);
    }
    .servicos-inner { max-width: 1200px; margin: 0 auto; }
    .servicos-cards {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px; margin-top: 48px;
    }
    .serv-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 36px 28px;
      transition: border-color .2s, transform .2s;
    }
    .serv-card:hover {
      border-color: var(--gold);
      transform: translateY(-4px);
    }
    .serv-card .icon {
      width: 62px; height: 62px; border-radius: 50%;
      background: var(--gold);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
      overflow: hidden; flex-shrink: 0;
    }
    .serv-card .icon svg { width: 30px; height: 30px; fill: #000; display: block; flex-shrink: 0; }
    .serv-card h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.2rem; font-weight: 800; text-transform: uppercase;
      letter-spacing: 1px; margin-bottom: 10px;
    }
    .serv-card p { font-size: .875rem; color: var(--muted); }

    /* ─── CATÁLOGO ───────────────────────────────────────── */
    #catalogo { background: var(--dark); }
    .catalogo-inner { max-width: 1280px; margin: 0 auto; }

    .models-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
      gap: 28px;
      margin-top: 56px;
    }

    .model-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      display: flex; flex-direction: column;
      transition: border-color .25s, transform .25s, box-shadow .25s;
      cursor: pointer;
    }
    .model-card:hover {
      border-color: var(--gold);
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 1px var(--gold);
    }

    .model-img-wrap {
      position: relative;
      background: radial-gradient(ellipse at 60% 70%, #1e1e1e 0%, #0f0f0f 100%);
      aspect-ratio: 4/3;
      overflow: hidden;
      display: flex; align-items: flex-end; justify-content: center;
    }
    .model-img-wrap::after {
      content: '';
      position: absolute; bottom: 0; left: 10%; right: 10%; height: 40%;
      background: radial-gradient(ellipse at 50% 100%, rgba(232,162,0,.10) 0%, transparent 70%);
      pointer-events: none;
    }
    .model-img-wrap img {
      max-width: 90%; max-height: 90%;
      width: auto; height: auto;
      object-fit: contain; object-position: center bottom;
      transition: transform .4s ease;
      position: relative; z-index: 1;
    }
    .model-card:hover .model-img-wrap img {
      transform: scale(1.06) translateY(-4px);
    }
    .model-badge {
      position: absolute; top: 14px; left: 14px;
      background: var(--gold); color: #000;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .7rem; font-weight: 900; letter-spacing: 2px;
      text-transform: uppercase;
      padding: 4px 10px; border-radius: 2px;
    }
    .model-price-badge {
      position: absolute; top: 14px; right: 14px;
      background: rgba(0,0,0,.85);
      border: 1px solid var(--gold);
      color: var(--gold);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem; font-weight: 800;
      padding: 4px 12px; border-radius: 4px;
      backdrop-filter: blur(4px);
    }

    .model-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

    .model-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.8rem; font-weight: 900;
      text-transform: uppercase; letter-spacing: -0.5px;
      color: #fff;
    }
    .model-name span { color: var(--gold); }

    .model-desc {
      font-size: .82rem; color: var(--muted);
      margin: 10px 0 18px;
      line-height: 1.55;
    }

    .model-specs {
      display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px;
      margin-bottom: 18px;
    }
    .spec-item { display: flex; flex-direction: column; }
    .spec-label {
      font-size: .67rem; letter-spacing: 1.5px; text-transform: uppercase;
      color: var(--muted); font-weight: 600;
    }
    .spec-value {
      font-size: .92rem; font-weight: 700; color: var(--text);
    }
    .spec-value.highlight { color: var(--gold); }

    .model-colors {
      display: flex; align-items: center; gap: 8px;
      margin-bottom: 20px;
    }
    .model-colors span {
      font-size: .7rem; letter-spacing: 1px; text-transform: uppercase;
      color: var(--muted); font-weight: 600; margin-right: 4px;
    }
    .color-dot {
      width: 18px; height: 18px; border-radius: 50%;
      border: 2px solid rgba(255,255,255,.2);
      cursor: pointer;
    }

    .model-footer {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 18px;
      border-top: 1px solid var(--border);
      margin-top: auto;
    }
    .model-price {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.7rem; font-weight: 900;
      color: var(--gold);
    }
    .model-price small {
      font-size: .75rem; color: var(--muted); display: block;
      font-weight: 400; font-family: 'Barlow', sans-serif;
    }
    .btn-wpp {
      display: inline-flex; align-items: center; gap: 8px;
      background: #25D366; color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700; font-size: .9rem; letter-spacing: 1px;
      text-transform: uppercase;
      padding: 10px 18px; border-radius: 6px;
      text-decoration: none;
      transition: background .2s, transform .15s;
    }
    .btn-wpp:hover { background: #1da851; transform: scale(1.03); }
    .btn-wpp svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

    /* ─── MODAL ──────────────────────────────────────────── */
    .modal-overlay {
      display: none; position: fixed; inset: 0; z-index: 10000;
      background: rgba(0,0,0,.92);
      backdrop-filter: blur(8px);
      align-items: center; justify-content: center;
      padding: 16px;
    }
    .modal-overlay.open { display: flex; }
    .modal-box {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      max-width: 980px; width: 100%;
      max-height: 92vh; overflow: hidden;
      display: flex; flex-direction: column;
    }
    .modal-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 16px 24px;
      border-bottom: 1px solid var(--border);
      flex-shrink: 0;
    }
    .modal-header-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.7rem; font-weight: 900; text-transform: uppercase;
    }
    .modal-header-title em { color: var(--gold); font-style: normal; }
    .modal-close-btn {
      background: none; border: 1px solid var(--border);
      color: var(--text); font-size: 1.1rem;
      width: 34px; height: 34px; border-radius: 50%;
      cursor: pointer; transition: border-color .2s, color .2s;
      flex-shrink: 0;
    }
    .modal-close-btn:hover { border-color: var(--gold); color: var(--gold); }
    .modal-body {
      display: grid; grid-template-columns: 1fr 1fr;
      overflow: hidden; flex: 1;
    }
    /* Carousel */
    .carousel-wrap {
      padding: 24px;
      border-right: 1px solid var(--border);
      display: flex; flex-direction: column; gap: 16px;
      background: radial-gradient(ellipse at 50% 85%, #1a1a1a 0%, #0f0f0f 100%);
      position: relative;
    }
    .carousel-stage {
      position: relative;
      flex: 1; min-height: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .carousel-stage::after {
      content: '';
      position: absolute; bottom: 0; left: 5%; right: 5%; height: 50%;
      background: radial-gradient(ellipse at 50% 100%, rgba(232,162,0,.16) 0%, transparent 68%);
      pointer-events: none; z-index: 0;
    }
    .carousel-stage img {
      max-width: 100%; max-height: 100%;
      object-fit: contain;
      transition: opacity .2s ease;
      position: relative; z-index: 1;
    }
    .carousel-stage img.fading { opacity: 0; }
    .carousel-btn {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.14);
      color: #fff; font-size: 1.3rem;
      width: 36px; height: 36px; border-radius: 50%;
      cursor: pointer; transition: background .2s, border-color .2s;
      display: flex; align-items: center; justify-content: center;
      z-index: 1;
    }
    .carousel-btn:hover { background: rgba(232,162,0,.18); border-color: var(--gold); color: var(--gold); }
    .carousel-btn.prev { left: 0; }
    .carousel-btn.next { right: 0; }
    .carousel-footer {
      display: flex; align-items: center; justify-content: center; gap: 14px;
      flex-shrink: 0;
    }
    .carousel-dots { display: flex; gap: 8px; }
    .c-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--border); cursor: pointer;
      transition: background .2s, transform .2s;
      border: none;
    }
    .c-dot.active { background: var(--gold); transform: scale(1.35); }
    .detail-row {
      display: flex; gap: 10px; justify-content: center;
      flex-shrink: 0;
    }
    .detail-thumb {
      width: 58px; height: 58px; border-radius: 50%;
      overflow: hidden; border: 1px solid var(--border);
      background: #141414; flex-shrink: 0;
      transition: border-color .2s;
    }
    .detail-thumb:hover { border-color: var(--gold); transform: scale(1.08); }
    .detail-thumb { cursor: zoom-in; transition: border-color .2s, transform .2s; }
    /* ─── ZOOM OVERLAY ─────────────────────────────────── */
    .detail-zoom-overlay {
      display: none; position: fixed; inset: 0; z-index: 10001;
      background: rgba(0,0,0,.88);
      align-items: center; justify-content: center;
      cursor: zoom-out;
    }
    .detail-zoom-overlay.open { display: flex; }
    .zoom-circle-wrap {
      width: min(380px, 88vw);
      height: min(380px, 88vw);
      border-radius: 50%;
      overflow: hidden;
      border: 3px solid var(--gold);
      flex-shrink: 0;
      animation: zoomPop .2s cubic-bezier(.34,1.56,.64,1);
      cursor: zoom-out;
    }
    .zoom-circle-wrap img {
      width: 112%; height: 112%;
      margin: -6%;
      display: block;
      object-fit: cover;
    }
    @keyframes zoomPop {
      from { transform: scale(.4); opacity: 0; }
      to   { transform: scale(1);  opacity: 1; }
    }
    .detail-thumb img { width: 112%; height: 112%; object-fit: cover; display: block; margin: -6%; }
    /* Specs panel */
    .modal-specs-panel {
      padding: 24px;
      display: flex; flex-direction: column;
      overflow-y: auto;
    }
    .spec-table { width: 100%; border-collapse: collapse; }
    .spec-table tr { border-bottom: 1px solid var(--border); }
    .spec-table td { padding: 9px 4px; font-size: .88rem; }
    .spec-table td:first-child { color: var(--muted); width: 50%; font-weight: 500; }
    .spec-table td:last-child { font-weight: 700; color: var(--text); }
    .modal-price-row {
      display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
      padding-top: 20px; margin-top: auto;
      border-top: 1px solid var(--border);
      flex-shrink: 0;
    }
    .modal-price-val {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.9rem; font-weight: 900; color: var(--gold);
    }
    @media (max-width: 700px) {
      .modal-box { display: flex; flex-direction: column; overflow: hidden; max-height: 92vh; }
      #modal-content { display: flex; flex-direction: column; flex: 1; min-height: 0; overflow: hidden; }
      .modal-header { flex-shrink: 0; }
      .modal-body {
        display: flex; flex-direction: column;
        flex: 1; min-height: 0; overflow: hidden;
      }
      .carousel-wrap {
        border-right: none; border-bottom: 1px solid var(--border);
        padding: 12px 16px; flex-shrink: 0; gap: 8px;
      }
      .carousel-stage { flex: none; height: 200px; }
      .carousel-stage img { max-height: 185px; width: auto; }
      .modal-specs-panel {
        flex: 1; min-height: 0; overflow-y: auto;
        padding: 16px;
      }
      .modal-price-row { flex-wrap: wrap; gap: 10px; }
    }

    /* ─── CONTATO ─────────────────────────────────────────── */
    #contato {
      background: var(--black);
      position: relative; overflow: hidden;
    }
    #contato::before {
      content: '';
      position: absolute; inset: 0;
      background: url('images/image20.png') center/cover no-repeat;
      opacity: .08;
    }
    .contato-inner {
      max-width: 900px; margin: 0 auto;
      position: relative; z-index: 1;
      text-align: center;
    }
    .contato-inner .section-title { margin-bottom: 48px; }
    .contato-cards {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 24px;
    }
    .contato-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 10px; padding: 32px 28px;
      min-width: 200px; flex: 1;
      transition: border-color .2s, transform .2s;
    }
    .contato-card:hover {
      border-color: var(--gold); transform: translateY(-4px);
    }
    .contato-card .icon {
      width: 62px; height: 62px; border-radius: 50%;
      background: var(--gold);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 18px;
      overflow: hidden; flex-shrink: 0;
    }
    .contato-card .icon svg { width: 30px; height: 30px; fill: #000; display: block; flex-shrink: 0; }
    .contato-card h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800; font-size: .85rem;
      text-transform: uppercase; letter-spacing: 2px;
      color: var(--muted); margin-bottom: 8px;
    }
    .contato-card a, .contato-card p {
      font-size: 1rem; font-weight: 600; color: var(--text);
      text-decoration: none;
    }
    .contato-card a:hover { color: var(--gold); }

    .wpp-cta {
      display: inline-flex; align-items: center; gap: 10px;
      background: #25D366; color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800; font-size: 1.1rem; letter-spacing: 2px;
      text-transform: uppercase;
      padding: 16px 40px; border-radius: 8px;
      text-decoration: none; margin-top: 40px;
      transition: background .2s, transform .15s;
    }
    .wpp-cta:hover { background: #1da851; transform: scale(1.03); }
    .wpp-cta svg { width: 22px; height: 22px; fill: currentColor; }

    /* ─── FOOTER ──────────────────────────────────────────── */
    footer {
      background: var(--dark);
      border-top: 1px solid var(--border);
      padding: 32px 48px;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 16px;
    }
    footer p { font-size: .8rem; color: var(--muted); }
    .footer-logo { display: flex; align-items: center; gap: 8px; }
    .footer-logo .logo-text { font-size: 1.2rem; }

    /* ─── MOBILE ──────────────────────────────────────────── */
    @media (max-width: 960px) {
      nav { padding: 12px 20px; }
      .hamburger { display: flex; }
      .nav-links {
        position: fixed;
        top: 57px; left: 0; right: 0; bottom: 0;
        height: auto;
        background: #0a0a0a;
        flex-direction: column; align-items: center; justify-content: center;
        gap: 40px; z-index: 9999;
        /* hidden by default */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity .22s ease, visibility .22s, transform .22s ease;
      }
      .nav-links.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }
      .nav-links li { width: 100%; text-align: center; }
      .nav-links a {
        font-size: 1.4rem; letter-spacing: 3px;
        color: var(--text); padding: 8px 0;
        display: block;
      }
      .nav-links a:hover { color: var(--gold); }
      .nav-links .nav-cta {
        display: inline-block;
        background: var(--gold); color: #000 !important;
        padding: 14px 48px; border-radius: 6px;
        font-size: 1rem; letter-spacing: 2px;
        font-weight: 800 !important;
      }
      section { padding: 70px 20px; }
      #hero {
        background-position: 65% center;
        align-items: flex-end;
      }
      #hero::before {
        background: linear-gradient(180deg,
          rgba(10,10,10,.6)  0%,
          rgba(10,10,10,.75) 40%,
          rgba(10,10,10,.97) 70%,
          rgba(10,10,10,1)   100%);
      }
      .hero-inner {
        max-width: 100%;
        padding: 0 24px 60px;
      }
      .hero-stats { gap: 20px; margin-top: 32px; padding-top: 24px;
        display: grid; grid-template-columns: 1fr 1fr; }
      .stat { min-width: 0; text-align: left; }
      .sobre-grid { grid-template-columns: 1fr; }
      .sobre-image { order: -1; }
      .modal-grid { grid-template-columns: 1fr; }
      footer { flex-direction: column; text-align: center; padding: 24px 20px; }
    }
    @media (max-width: 480px) {
      .hero-title { font-size: 2.6rem; }
      .hero-stats { gap: 16px; }
      .stat-val { font-size: 1.7rem; }
    }

    /* ─── LIGHTNING BOLT DECO ─────────────────────────────── */
    .bolt-deco {
      position: absolute;
      opacity: .04;
      pointer-events: none;
      z-index: 0;
    }

    /* ─── SCROLL ANIMATION ────────────────────────────────── */
    .fade-in {
      opacity: 0; transform: translateY(30px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .fade-in.visible {
      opacity: 1; transform: none;
    }