    /* ============================================================
   RESET & BASE
============================================================ */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: #080808;
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      overscroll-behavior-y: contain;
    }

    img,
    video {
      display: block;
      max-width: 100%;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* ============================================================
   NAVBAR
============================================================ */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      height: 92px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 56px;
      background: rgba(8, 8, 8, 0.92);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      transition: background 0.3s;
    }

    .nav-logo {
      cursor: pointer;
      display: flex;
      align-items: center;
    }

    .nav-logo img {
      height: 40px;
      width: auto;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
    }

    .nav-links a {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.22em;
      color: rgba(255, 255, 255, 0.45);
      transition: color 0.25s;
      cursor: pointer;
    }

    .nav-links a:hover {
      color: #fff;
    }

    .nav-links a.nav-corp {
      color: rgba(205, 181, 97, 0.7);
    }

    .nav-links a.nav-corp:hover {
      color: #CDB561;
    }

    .nav-links a.nav-reserve {
      color: #000;
      background: #CDB561;
      padding: 10px 22px;
      border-radius: 2px;
      letter-spacing: 0.2em;
      font-weight: 700;
    }

    .nav-links a.nav-reserve:hover {
      background: #b89e42;
      color: #000;
    }

    /* ============================================================
   HERO
============================================================ */
    #inicio {
      position: relative;
      height: 100vh;
      min-height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-slides {
      position: absolute;
      inset: 0;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1.2s ease-in-out;
      transform: scale(1.05);
      animation: none;
    }

    .hero-slide.active {
      opacity: 0.55;
      animation: heroZoom 6s ease forwards;
    }

    @keyframes heroZoom {
      from {
        transform: scale(1.05);
      }

      to {
        transform: scale(1);
      }
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(8, 8, 8, 0.3) 0%, rgba(8, 8, 8, 0.5) 60%, #080808 100%);
    }

    .hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 0 24px;
    }

    .hero-eyebrow {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.5em;
      color: #CDB561;
      margin-bottom: 28px;
    }

    .hero-divider {
      width: 80px;
      height: 1px;
      margin: 0 auto 48px;
      background: linear-gradient(to right, transparent, #CDB561, transparent);
    }

    .hero-tagline {
      font-family: 'Raleway', sans-serif;
      font-size: clamp(18px, 3vw, 42px);
      font-weight: 100;
      color: #fff;
      letter-spacing: 0.2em;
      line-height: 1.15;
      margin-bottom: 0;
      text-transform: uppercase;
      cursor: default;
      display: inline-block;
      transition: color 0.4s ease;
    }

    .hero-tagline:hover {
      animation: spin360 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
      color: #CDB561;
    }

    @keyframes spin360 {
      0% {
        transform: rotateY(0deg);
      }

      100% {
        transform: rotateY(360deg);
      }
    }

    .hero-ctas {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.28em;
      color: #000;
      background: #CDB561;
      border: none;
      padding: 16px 36px;
      border-radius: 2px;
      cursor: pointer;
      transition: background 0.2s;
    }

    .btn-primary:hover {
      background: #b89e42;
    }

    .btn-ghost {
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.28em;
      color: rgba(205, 181, 97, 0.8);
      background: transparent;
      border: 1px solid rgba(205, 181, 97, 0.3);
      padding: 15px 36px;
      border-radius: 2px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .btn-ghost:hover {
      border-color: #CDB561;
      color: #CDB561;
    }

    .hero-scroll {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      font-size: 9px;
      letter-spacing: 0.3em;
      color: rgba(255, 255, 255, 0.2);
      animation: scrollBounce 2s ease-in-out infinite;
    }

    .hero-scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, rgba(205, 181, 97, 0.5), transparent);
    }

    @keyframes scrollBounce {

      0%,
      100% {
        transform: translateX(-50%) translateY(0);
      }

      50% {
        transform: translateX(-50%) translateY(6px);
      }
    }

    /* ============================================================
   SEÇÕES GERAIS
============================================================ */
    .section {
      padding: 120px 56px;
    }

    .section-inner {
      max-width: 1160px;
      margin: 0 auto;
    }

    .section-tag {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.45em;
      color: #CDB561;
      margin-bottom: 14px;
    }

    .section-title {
      font-family: 'Raleway', sans-serif;
      font-size: clamp(36px, 4vw, 56px);
      font-weight: 200;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 16px;
      line-height: 1.1;
    }

    .section-sub {
      font-size: 13px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.35);
      letter-spacing: 0.05em;
      line-height: 1.8;
      max-width: 560px;
    }

    /* ============================================================
   FOTOS / GALERIA DRIVE
============================================================ */
    #fotos {
      background: #060606;
      min-height: 100vh;
      scroll-margin-top: 92px;
    }

    .evt-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 2px;
      margin-top: 48px;
    }

    .evt-card {
      position: relative;
      cursor: pointer;
      overflow: hidden;
      background: #0e0e0e;
      aspect-ratio: 4/3;
    }

    .evt-card-thumb {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease, opacity 0.3s;
      opacity: 0.7;
    }

    .evt-card:hover .evt-card-thumb {
      transform: scale(1.05);
      opacity: 0.9;
    }

    .evt-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 45%, rgba(0, 0, 0, 0.5) 100%);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 18px;
    }

    .evt-card-date {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 600;
      color: #fff;
      letter-spacing: 0.2em;
      text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
      text-transform: uppercase;
    }

    .evt-card-count {
      font-size: 9px;
      color: rgba(205, 181, 97, 0.9);
      letter-spacing: 0.25em;
      font-weight: 700;
    }

    .evt-card-placeholder {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .evt-card-placeholder svg {
      opacity: 0.15;
    }

    .gallery-loading {
      text-align: center;
      padding: 80px 0;
      font-size: 11px;
      letter-spacing: 0.3em;
      color: #333;
    }

    .gallery-loading::after {
      content: '';
      display: block;
      width: 40px;
      height: 1px;
      background: #CDB561;
      margin: 20px auto 0;
      opacity: 0.4;
      animation: loadPulse 1.5s ease-in-out infinite;
    }

    @keyframes loadPulse {

      0%,
      100% {
        opacity: 0.2
      }

      50% {
        opacity: 0.8
      }
    }

    /* MODAL EVENTO */
    .modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 500;
      background: rgba(0, 0, 0, 0.97);
      display: none;
      flex-direction: column;
      overflow-y: auto;
    }

    .modal-overlay.open {
      display: flex;
    }

    .modal-header {
      position: sticky;
      top: 0;
      z-index: 10;
      background: rgba(8, 8, 8, 0.95);
      backdrop-filter: blur(12px);
      padding: 20px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid #1a1a1a;
    }

    .modal-title {
      font-size: 11px;
      letter-spacing: 0.3em;
      color: #CDB561;
      font-weight: 700;
    }

    .modal-close {
      background: none;
      border: none;
      color: rgba(255, 255, 255, 0.4);
      font-size: 24px;
      cursor: pointer;
      line-height: 1;
      transition: color 0.2s;
    }

    .modal-close:hover {
      color: #fff;
    }

    .modal-photos {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 2px;
      padding: 2px;
    }

    .modal-photo-wrap {
      position: relative;
      aspect-ratio: 1;
      overflow: hidden;
      cursor: pointer;
      background: #0e0e0e;
    }

    .modal-photo-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s, opacity 0.3s;
      opacity: 0.85;
    }

    .modal-photo-wrap:hover img {
      transform: scale(1.04);
      opacity: 1;
    }

    .modal-photo-dl {
      position: absolute;
      bottom: 8px;
      right: 8px;
      background: rgba(0, 0, 0, 0.7);
      border: 1px solid rgba(205, 181, 97, 0.4);
      color: #CDB561;
      border-radius: 2px;
      padding: 6px 10px;
      font-size: 9px;
      letter-spacing: 0.15em;
      font-weight: 700;
      cursor: pointer;
      opacity: 0;
      transition: opacity 0.2s;
      font-family: 'Montserrat', sans-serif;
    }

    .modal-photo-wrap:hover .modal-photo-dl {
      opacity: 1;
    }

    .modal-loading {
      padding: 80px;
      text-align: center;
      font-size: 11px;
      letter-spacing: 0.3em;
      color: #333;
    }

    /* ============================================================
   MODAL LGPD — POLÍTICA DE PRIVACIDADE
============================================================ */
    .lgpd-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9000;
      background: rgba(0, 0, 0, 0.85);
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .lgpd-overlay.open {
      display: flex;
    }

    .lgpd-box {
      background: #0f0f0f;
      border: 1px solid #2a2a2a;
      border-radius: 6px;
      max-width: 680px;
      width: 100%;
      max-height: 85vh;
      display: flex;
      flex-direction: column;
    }

    .lgpd-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 24px;
      border-bottom: 1px solid #1e1e1e;
      flex-shrink: 0;
    }

    .lgpd-head-title {
      font-size: 10px;
      letter-spacing: 0.3em;
      color: #C9A84C;
      font-weight: 700;
    }

    .lgpd-head-close {
      background: none;
      border: none;
      color: #555;
      font-size: 22px;
      cursor: pointer;
      line-height: 1;
      padding: 0 4px;
    }

    .lgpd-head-close:hover {
      color: #fff;
    }

    .lgpd-body {
      overflow-y: auto;
      padding: 24px;
      flex: 1;
      font-size: 12px;
      line-height: 1.8;
      color: #aaa;
    }

    .lgpd-body h3 {
      font-size: 10px;
      letter-spacing: 0.2em;
      color: #C9A84C;
      font-weight: 700;
      margin: 20px 0 8px;
      text-transform: uppercase;
    }

    .lgpd-body h3:first-child {
      margin-top: 0;
    }

    .lgpd-body p {
      margin-bottom: 10px;
    }

    .lgpd-body ul {
      padding-left: 18px;
      margin-bottom: 10px;
    }

    .lgpd-body ul li {
      margin-bottom: 4px;
    }

    .lgpd-body a {
      color: #C9A84C;
    }

    .lgpd-foot {
      padding: 16px 24px;
      border-top: 1px solid #1e1e1e;
      flex-shrink: 0;
      text-align: right;
    }

    .lgpd-foot-btn {
      background: #C9A84C;
      color: #000;
      border: none;
      border-radius: 3px;
      padding: 10px 28px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.2em;
      cursor: pointer;
      font-family: 'Montserrat', sans-serif;
    }

    .lgpd-foot-btn:hover {
      background: #e0bb60;
    }

    /* Checkbox LGPD no formulário */
    .lgpd-check-wrap {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-top: 16px;
      margin-bottom: 4px;
    }

    .lgpd-check-wrap input[type="checkbox"] {
      width: 16px;
      height: 16px;
      min-width: 16px;
      accent-color: #C9A84C;
      cursor: pointer;
      margin-top: 2px;
    }

    .lgpd-check-wrap label {
      font-size: 11px;
      color: #777;
      line-height: 1.6;
      cursor: pointer;
    }

    .lgpd-check-wrap label a {
      color: #C9A84C;
      text-decoration: underline;
    }

    .lgpd-check-wrap label a:hover {
      color: #e0bb60;
    }

    /* LIGHTBOX */
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 600;
      background: rgba(0, 0, 0, 0.98);
      display: none;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }

    .lightbox.open {
      display: flex;
    }

    .lightbox-img {
      max-width: 90vw;
      max-height: 80vh;
      object-fit: contain;
    }

    .lightbox-controls {
      display: flex;
      gap: 16px;
      margin-top: 20px;
      align-items: center;
    }

    .lightbox-btn {
      background: #0f0f0f;
      border: 1px solid #1e1e1e;
      color: rgba(255, 255, 255, 0.5);
      padding: 10px 20px;
      cursor: pointer;
      font-size: 18px;
      transition: color 0.2s, border-color 0.2s;
      border-radius: 2px;
    }

    .lightbox-btn:hover {
      color: #fff;
      border-color: #444;
    }

    .lightbox-dl {
      background: #CDB561;
      border: none;
      color: #000;
      padding: 10px 24px;
      cursor: pointer;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.2em;
      font-family: 'Montserrat', sans-serif;
      border-radius: 2px;
    }

    .lightbox-close {
      position: absolute;
      top: 20px;
      right: 28px;
      background: none;
      border: none;
      color: rgba(255, 255, 255, 0.3);
      font-size: 28px;
      cursor: pointer;
      transition: color 0.2s;
    }

    .lightbox-close:hover {
      color: #fff;
    }

    /* ============================================================
   INFORMAÇÕES
============================================================ */
    /* PRÓXIMOS EVENTOS */
    .eventos-carousel {
      position: relative;
      margin-top: 48px;
      width: 100%;
    }

    .eventos-track {
      overflow: hidden;
      width: 100%;
    }

    .eventos-grid {
      display: flex;
      gap: 16px;
      transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
      will-change: transform;
    }

    .evento-card {
      flex: 0 0 calc((100% - 32px) / 3);
      overflow: hidden;
      border-radius: 6px;
      border: 1px solid #1a1a1a;
      background: #0f0f0f;
    }

    .evento-card img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.35);
      border: none;
      color: #fff;
      width: 48px;
      height: 80px;
      border-radius: 4px;
      font-size: 22px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
      transition: background 0.2s;
      backdrop-filter: blur(4px);
    }

    .carousel-btn:hover { background: rgba(201,168,76,0.5); }
    .carousel-btn.prev { left: 0; }
    .carousel-btn.next { right: 0; }

    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 20px;
    }

    .carousel-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #333;
      cursor: pointer;
      transition: background 0.3s;
    }

    .carousel-dot.active { background: #C9A84C; }

    .evento-placeholder {
      width: 100%;
      padding: 60px;
      text-align: center;
      border: 1px dashed #1e1e1e;
      border-radius: 4px;
    }

    .evento-placeholder-text {
      font-size: 10px;
      letter-spacing: 0.3em;
      color: #333;
      font-weight: 700;
    }

    .evento-placeholder-sub {
      font-size: 10px;
      color: #222;
      margin-top: 8px;
      letter-spacing: 0.1em;
    }

    #informacoes {
      background: #080808;
    }

    /* SOBRE NÓS */
    .sobre-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      margin-top: 56px;
      align-items: start;
    }

    .sobre-p {
      font-size: 14px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.9;
      letter-spacing: 0.02em;
      margin-bottom: 20px;
    }

    .sobre-tagline {
      font-family: 'Raleway', sans-serif;
      font-size: 18px;
      font-weight: 200;
      color: #CDB561;
      letter-spacing: 0.15em;
      margin: 32px 0 28px;
    }

    .sobre-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .sobre-info {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
    }

    /* CORPORATIVO NOVO */
    .corp-espacos {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 0;
      margin-top: 56px;
      align-items: stretch;
    }

    .corp-espaco {
      background: #0c0c0c;
      border: 1px solid #1a1a1a;
      padding: 40px 36px;
    }

    .corp-espaco-divider {
      width: 1px;
      background: #1a1a1a;
      margin: 0;
    }

    .corp-espaco-icon {
      font-size: 28px;
      margin-bottom: 16px;
    }

    .corp-espaco-nome {
      font-family: 'Raleway', sans-serif;
      font-size: 20px;
      font-weight: 200;
      letter-spacing: 0.15em;
      color: #fff;
      margin-bottom: 6px;
      text-transform: uppercase;
    }

    .corp-espaco-cap {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.25em;
      color: #CDB561;
      margin-bottom: 18px;
    }

    .corp-espaco-desc {
      font-size: 13px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.45);
      line-height: 1.8;
    }

    .corp-diferenciais {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 32px;
      margin-top: 40px;
    }

    .corp-diff-item {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.15em;
      color: rgba(255, 255, 255, 0.5);
    }

    .corp-cta {
      margin-top: 48px;
      padding-top: 40px;
      border-top: 1px solid #1a1a1a;
      text-align: center;
    }

    .corp-cta-text {
      font-size: 13px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.35);
      letter-spacing: 0.08em;
      margin-bottom: 24px;
    }

    .corp-cta-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .info-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin-top: 56px;
    }

    .info-card {
      padding: 40px 36px;
      background: #0c0c0c;
      border: 1px solid rgba(255, 255, 255, 0.04);
      transition: border-color 0.3s;
    }

    .info-card:hover {
      border-color: rgba(205, 181, 97, 0.15);
    }

    .info-card-label {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.35em;
      color: #CDB561;
      margin-bottom: 18px;
    }

    .info-card-text {
      font-family: 'Raleway', sans-serif;
      font-size: 20px;
      font-weight: 200;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.7;
      letter-spacing: 0.03em;
    }

    .info-card-link {
      display: inline-block;
      margin-top: 16px;
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.2em;
      color: rgba(205, 181, 97, 0.6);
      transition: color 0.2s;
    }

    .info-card-link:hover {
      color: #CDB561;
    }

    /* ============================================================
   RESERVAS
============================================================ */
    #reserve {
      background: #060606;
    }

    .reservas-layout {
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 56px;
      align-items: start;
      margin-top: 56px;
    }

    /* --- MAPA --- */
    .venue-wrapper {
      background: #0c0c0c;
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 4px;
      padding: 32px;
    }

    .venue-wrapper-title {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.35em;
      color: rgba(255, 255, 255, 0.2);
      text-align: center;
      margin-bottom: 24px;
    }

    /* --- mapa interno (escala do v4, adaptado) --- */
    .venue {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .top-dj-grid {
      display: grid;
      grid-template-columns: 44px 1fr 28px 1fr 28px 1fr 44px;
      grid-template-rows: auto auto;
      gap: 4px;
    }

    .center-spine {
      grid-column: 4;
      grid-row: 1 / 3;
      display: flex;
      flex-direction: column;
      border-radius: 3px;
      overflow: hidden;
    }

    .backstage {
      flex: 1;
      background: #0f0f0f;
      border: 1px solid #2a2a2a;
      border-bottom: none;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px 4px;
    }

    .bs-lbl {
      font-size: 8px;
      color: #333;
      letter-spacing: 0.2em;
      font-weight: 600;
    }

    .dj-booth {
      flex: 1;
      background: #1c1500;
      border: 1px solid #CDB56155;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 9px;
      font-weight: 700;
      color: #CDB561;
      letter-spacing: 0.18em;
      padding: 10px 4px;
    }

    .bwc {
      font-size: 7px;
      color: #2a2a2a;
      letter-spacing: 0.05em;
      text-align: center;
      line-height: 1.5;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cam {
      background: #141000;
      border: 1px solid #3a2800;
      border-radius: 3px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2px;
      cursor: pointer;
      transition: all 0.18s;
      padding: 8px 4px;
    }

    .cam:hover {
      background: #201800;
      border-color: #CDB56188;
    }

    .cam.selected {
      background: #CDB561 !important;
      border-color: #CDB561 !important;
    }

    .cam .lbl {
      font-size: 12px;
      font-weight: 700;
      color: #CDB561;
      letter-spacing: 0.06em;
    }

    .cam .sub2 {
      font-size: 8px;
      color: #5a4020;
    }

    .cam.selected .lbl,
    .cam.selected .sub2 {
      color: #000;
    }

    .outer-pair {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4px;
    }

    .spot-big {
      background: #111;
      border: 1px solid #222;
      border-radius: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: 700;
      color: #666;
      cursor: pointer;
      transition: all 0.18s;
      padding: 8px 4px;
    }

    .spot-big:hover {
      border-color: #CDB56166;
      color: #CDB561;
      background: #141000;
    }

    .spot-big.selected {
      background: #CDB561 !important;
      border-color: #CDB561 !important;
      color: #000 !important;
    }

    .spot-sm {
      background: #0f0f0f;
      border: 1px solid #1e1e1e;
      border-radius: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 9px;
      font-weight: 700;
      color: #555;
      cursor: pointer;
      transition: all 0.18s;
    }

    .spot-sm:hover {
      border-color: #CDB56166;
      color: #CDB561;
      background: #141000;
    }

    .spot-sm.selected {
      background: #CDB561 !important;
      border-color: #CDB561 !important;
      color: #000 !important;
    }

    .body-row {
      display: grid;
      grid-template-columns: 9px 64px 7px 1fr 7px 64px 9px;
      gap: 0;
      align-items: start;
      margin-top: 2px;
    }

    .cam-lbl-v {
      writing-mode: vertical-rl;
      font-size: 7px;
      letter-spacing: 0.2em;
      color: #CDB561;
      font-weight: 700;
      opacity: 0.4;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .col-l,
    .col-r {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .col-c {
      display: flex;
      flex-direction: column;
    }

    .mesas-g {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 4px;
    }

    .mesas-last {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 4px;
      margin-top: 4px;
    }

    .mesa {
      background: #111;
      border: 1px solid #1e1e1e;
      border-radius: 3px;
      padding: 8px 2px;
      text-align: center;
      cursor: pointer;
      transition: all 0.18s;
      font-size: 10px;
      font-weight: 700;
      color: #666;
    }

    .mesa:hover {
      border-color: #CDB56166;
      color: #CDB561;
      background: #141000;
    }

    .mesa.selected {
      background: #CDB561 !important;
      border-color: #CDB561 !important;
      color: #000 !important;
    }

    .bar-blk {
      background: #0c0c0c;
      border: 1px solid #1a1a1a;
      border-radius: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .bar-blk span {
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      font-size: 8px;
      color: #2a2a2a;
      letter-spacing: 0.15em;
      font-weight: 700;
    }

    .boate-txt {
      text-align: center;
      font-size: 8px;
      color: #222;
      letter-spacing: 0.3em;
      font-weight: 700;
      padding: 4px 0;
    }

    .bottom-row {
      display: grid;
      grid-template-columns: 64px 1fr 64px;
      gap: 4px;
      margin-top: 4px;
      height: 30px;
    }

    .bar-row {
      display: grid;
      grid-template-columns: 1fr 70px;
      gap: 4px;
      margin-top: 4px;
      height: 30px;
    }

    .bar-shot {
      background: #0c0c0c;
      border: 1px solid #1a1a1a;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 8px;
      color: #2a2a2a;
      letter-spacing: 0.12em;
      font-weight: 700;
    }

    .gv {
      background: #0c0c0c;
      border: 1px solid #181818;
      border-radius: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 7px;
      color: #222;
      letter-spacing: 0.05em;
      font-weight: 700;
      text-align: center;
    }

    .mapa-legenda {
      display: flex;
      gap: 20px;
      justify-content: center;
      margin-top: 20px;
      flex-wrap: wrap;
    }

    .mapa-legenda-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 9px;
      color: rgba(255, 255, 255, 0.3);
      letter-spacing: 0.1em;
    }

    .mapa-legenda-dot {
      width: 10px;
      height: 10px;
      border-radius: 2px;
    }

    /* --- PAINEL FORM --- */
    .painel {
      position: sticky;
      top: 96px;
      background: #0c0c0c;
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 4px;
      padding: 36px 32px;
    }

    .painel-title {
      font-family: 'Raleway', sans-serif;
      font-size: 22px;
      font-weight: 200;
      letter-spacing: 0.15em;
      color: #fff;
      margin-bottom: 24px;
    }

    .painel-sel {
      background: rgba(205, 181, 97, 0.07);
      border: 1px solid rgba(205, 181, 97, 0.2);
      border-radius: 3px;
      padding: 13px 16px;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.3);
      letter-spacing: 0.05em;
      margin-bottom: 28px;
      min-height: 46px;
      transition: all 0.2s;
    }

    .painel-sel.active {
      color: #CDB561;
      border-color: rgba(205, 181, 97, 0.4);
    }

    .form-lbl {
      display: block;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.22em;
      color: rgba(255, 255, 255, 0.3);
      margin-bottom: 7px;
      margin-top: 16px;
    }

    .form-inp {
      width: 100%;
      background: #080808;
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 2px;
      padding: 12px 14px;
      color: #fff;
      font-size: 13px;
      font-weight: 300;
      font-family: 'Montserrat', sans-serif;
      outline: none;
      transition: border-color 0.2s;
    }

    .form-inp:focus {
      border-color: rgba(205, 181, 97, 0.35);
    }

    .form-inp::placeholder {
      color: rgba(255, 255, 255, 0.12);
    }

    .aviso-18 {
      margin-top: 18px;
      padding: 12px 16px;
      background: rgba(205, 181, 97, 0.04);
      border: 1px solid rgba(205, 181, 97, 0.1);
      border-radius: 2px;
      font-size: 10px;
      color: rgba(205, 181, 97, 0.45);
      letter-spacing: 0.04em;
      line-height: 1.6;
    }

    .btn-wpp {
      width: 100%;
      margin-top: 22px;
      background: #25D366;
      color: #000;
      border: none;
      border-radius: 2px;
      padding: 15px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.22em;
      cursor: pointer;
      font-family: 'Montserrat', sans-serif;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      transition: background 0.2s;
    }

    .btn-wpp:hover {
      background: #1fb855;
    }

    /* ============================================================
   EVENTOS CORPORATIVOS
============================================================ */
    #corporativo {
      background: #080808;
    }

    .corp-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      margin-top: 56px;
    }

    .corp-tipos {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      margin-bottom: 40px;
    }

    .corp-card {
      padding: 28px 24px;
      background: #0c0c0c;
      border: 1px solid rgba(255, 255, 255, 0.04);
      transition: border-color 0.25s;
      cursor: default;
    }

    .corp-card:hover {
      border-color: rgba(205, 181, 97, 0.15);
    }

    .corp-card-title {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.2em;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 10px;
    }

    .corp-card-sub {
      font-family: 'Raleway', sans-serif;
      font-size: 16px;
      font-weight: 200;
      color: rgba(255, 255, 255, 0.35);
      line-height: 1.6;
    }

    .corp-visual {
      position: relative;
      height: 440px;
      background: linear-gradient(135deg, #1a0e00, #0a0808);
      border: 1px solid rgba(205, 181, 97, 0.08);
      border-radius: 2px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }

    .corp-visual::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(205, 181, 97, 0.1), transparent 65%);
    }

    .corp-visual-logo img {
      height: 64px;
      width: auto;
      opacity: 0.25;
    }

    .corp-visual-tag {
      font-size: 9px;
      letter-spacing: 0.4em;
      color: rgba(205, 181, 97, 0.4);
      font-weight: 600;
      position: relative;
    }

    .corp-visual-line {
      width: 60px;
      height: 1px;
      position: relative;
      background: linear-gradient(to right, transparent, rgba(205, 181, 97, 0.3), transparent);
    }

    /* ============================================================
   PROMOTORES
============================================================ */
    #promotores {
      background: #060606;
    }

    .promo-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 340px));
      gap: 2px;
      margin-top: 56px;
      justify-content: center;
    }

    .promo-card {
      padding: 32px 28px;
      background: #0a0a0a;
      border: 1px solid rgba(255, 255, 255, 0.04);
      display: flex;
      align-items: center;
      gap: 18px;
      transition: border-color 0.25s, background 0.25s;
      cursor: pointer;
    }

    .promo-card:hover {
      border-color: rgba(37, 211, 102, 0.2);
      background: #0c0f0c;
    }

    .promo-icon {
      width: 42px;
      height: 42px;
      flex-shrink: 0;
      background: rgba(37, 211, 102, 0.08);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .promo-name {
      font-size: 12px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.75);
      letter-spacing: 0.04em;
    }

    .promo-label {
      font-size: 9px;
      color: rgba(255, 255, 255, 0.25);
      letter-spacing: 0.18em;
      margin-top: 4px;
    }

    /* ============================================================
   FOOTER
============================================================ */
    footer {
      padding: 64px 56px;
      border-top: 1px solid rgba(255, 255, 255, 0.04);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 32px;
    }

    .footer-logo img {
      height: 44px;
      width: auto;
      opacity: 0.6;
    }

    .footer-sub {
      font-size: 9px;
      color: rgba(255, 255, 255, 0.2);
      letter-spacing: 0.25em;
      margin-top: 8px;
    }

    .footer-info {
      text-align: right;
      font-size: 10px;
      color: rgba(255, 255, 255, 0.2);
      letter-spacing: 0.12em;
      line-height: 2;
    }

    .footer-social {
      display: flex;
      gap: 24px;
      align-items: center;
    }

    .footer-social a {
      font-size: 10px;
      letter-spacing: 0.2em;
      color: rgba(255, 255, 255, 0.25);
      transition: color 0.2s;
    }

    .footer-social a:hover {
      color: #CDB561;
    }

    /* ============================================================
   FADE-IN
============================================================ */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ============================================================
   NAVBAR MOBILE — HAMBURGER
============================================================ */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      background: none;
      border: none;
      min-width: 44px;
      min-height: 44px;
      align-items: center;
    }

    .nav-hamburger span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: rgba(255, 255, 255, 0.7);
      transition: all 0.25s ease;
      border-radius: 1px;
    }

    .nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.7px, 4.7px); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.7px, -4.7px); }

    .nav-mobile-menu {
      display: none;
      position: fixed;
      top: 72px;
      left: 0;
      right: 0;
      background: rgba(8, 8, 8, 0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      padding: 8px 24px 28px;
      flex-direction: column;
      z-index: 199;
      animation: menuSlide 0.2s ease;
    }

    .nav-mobile-menu.open { display: flex; }

    @keyframes menuSlide {
      from { opacity: 0; transform: translateY(-8px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .nav-mobile-menu a {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.22em;
      color: rgba(255, 255, 255, 0.45);
      padding: 16px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      display: block;
      min-height: 44px;
      display: flex;
      align-items: center;
    }

    .nav-mobile-menu a.nav-corp { color: rgba(205, 181, 97, 0.7); }

    .nav-mobile-menu a.nav-reserve {
      margin-top: 16px;
      background: #CDB561;
      color: #000;
      justify-content: center;
      padding: 14px 24px;
      border-radius: 2px;
      border-bottom: none;
      min-height: 48px;
      font-weight: 700;
    }

    /* ============================================================
   RESPONSIVO — TABLET (769px – 1024px)
============================================================ */
    @media (max-width: 1024px) and (min-width: 769px) {
      .nav { padding: 0 32px; }
      .nav-links { gap: 18px; }
      .nav-links a { font-size: 9px; }
      .nav-links a.nav-reserve { padding: 8px 16px; }

      .section { padding: 100px 32px; }

      .sobre-layout { gap: 40px; }
      .corp-layout { gap: 40px; }
      .corp-visual { height: 360px; }

      .info-grid { grid-template-columns: 1fr 1fr; }

      .reservas-layout { grid-template-columns: 1fr 340px; gap: 32px; }

      .promo-grid { grid-template-columns: repeat(2, 1fr); }

      /* PRÓXIMOS EVENTOS — tablet: 2 cards */
      .evento-card { flex: 0 0 calc((100% - 16px) / 2) !important; }

      footer { padding: 56px 32px; }
    }

    /* ============================================================
   RESPONSIVO — MOBILE (≤ 768px)
============================================================ */
    @media (max-width: 768px) {

      /* NAVBAR */
      .nav { padding: 0 20px; height: 72px; }
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .nav-mobile-menu { top: 72px; }

      /* SCROLL MARGIN */
      #fotos, #informacoes, #reserve, #corporativo, #promotores, #eventos {
        scroll-margin-top: 72px;
      }

      /* HERO */
      #inicio { min-height: 100svh; }
      .hero-content { padding: 0 20px; }
      .hero-ctas { flex-direction: column; align-items: center; gap: 12px; }
      .btn-primary,
      .btn-ghost {
        width: 100%;
        max-width: 300px;
        padding: 18px 24px;
        min-height: 52px;
        font-size: 11px;
      }

      /* SEÇÕES */
      .section { padding: 72px 20px; }
      .section-title { letter-spacing: 0.06em; }
      .section-sub { max-width: 100%; }

      /* GALERIA */
      .evt-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 28px;
      }

      /* MODAL FOTOS */
      .modal-header { padding: 14px 20px; }
      .modal-photos { grid-template-columns: repeat(2, 1fr); }
      .modal-photo-dl { opacity: 1; }

      /* LIGHTBOX */
      .lightbox-img { max-width: 95vw; max-height: 65vh; }
      .lightbox-controls { flex-wrap: wrap; justify-content: center; }
      .lightbox-close { top: 12px; right: 16px; }

      /* SOBRE NÓS */
      .sobre-layout { grid-template-columns: 1fr; gap: 36px; margin-top: 36px; }
      .sobre-info { grid-template-columns: 1fr; }
      .sobre-actions { flex-direction: column; align-items: center; }
      .sobre-actions .btn-primary,
      .sobre-actions .btn-ghost { max-width: 300px; width: 100%; min-height: 52px; text-align: center; }

      /* INFO CARDS */
      .info-grid { grid-template-columns: 1fr; margin-top: 36px; }
      .info-card { padding: 28px 24px; }

      /* PRÓXIMOS EVENTOS */
      .evento-card { flex: 0 0 100% !important; }
      .carousel-btn { width: 36px; height: 60px; font-size: 16px; }
      .carousel-btn.prev { left: 0; }
      .carousel-btn.next { right: 0; }

      /* CORP ESPACOS */
      .corp-espacos { grid-template-columns: 1fr; margin-top: 36px; }
      .corp-espaco-divider { display: none; }
      .corp-espaco { padding: 28px 20px; }

      /* CORP LAYOUT */
      .corp-layout { grid-template-columns: 1fr; gap: 36px; margin-top: 36px; }
      .corp-tipos { grid-template-columns: 1fr; }
      .corp-card { padding: 22px 18px; }
      .corp-visual { height: 220px; }
      .corp-diferenciais { gap: 10px 20px; }
      .corp-cta-btns { flex-direction: column; align-items: center; }
      .corp-cta-btns .btn-primary,
      .corp-cta-btns .btn-ghost { width: 100%; max-width: 300px; min-height: 52px; text-align: center; }

      /* RESERVAS */
      .reservas-layout { grid-template-columns: 1fr; gap: 32px; margin-top: 36px; }
      .painel { position: static; padding: 24px 20px; }
      .painel-title { font-size: 18px; }

      /* MAPA — scroll horizontal */
      .venue-wrapper {
        padding: 20px 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
      }
      .venue { min-width: 340px; }

      /* PROMOTORES */
      .promo-grid { grid-template-columns: 1fr 1fr; }
      .promo-card { padding: 20px 14px; gap: 12px; }

      /* FOOTER */
      footer {
        padding: 48px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
      }
      .footer-info { text-align: left; }
      .footer-social { gap: 20px; }

      /* LGPD */
      .lgpd-overlay { padding: 12px; }
      .lgpd-box { max-height: 92vh; }
      .lgpd-head { padding: 16px 20px; }
      .lgpd-body { padding: 20px; }
      .lgpd-foot { padding: 14px 20px; }
    }

    /* ============================================================
   RESPONSIVO — SMALL MOBILE (≤ 480px)
============================================================ */
    @media (max-width: 480px) {
      .nav { height: 64px; }
      .nav-mobile-menu { top: 64px; }
      .nav-logo img { height: 30px; }

      #fotos, #informacoes, #reserve, #corporativo, #promotores, #eventos {
        scroll-margin-top: 64px;
      }

      .section { padding: 64px 16px; }

      .hero-tagline { letter-spacing: 0.08em; }

      .evt-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
      .modal-photos { grid-template-columns: 1fr 1fr; }

      .promo-grid { grid-template-columns: 1fr; }
      .promo-card { padding: 18px 14px; }

      .venue-wrapper { padding: 16px 10px; }
      .venue { min-width: 300px; }

      footer { padding: 40px 16px; }
    }

    /* Desativa hover no touch (evita estados presos) */
    @media (hover: none) {
      .evt-card:hover .evt-card-thumb { transform: none; opacity: 0.7; }
      .modal-photo-wrap:hover img { transform: none; }
      .modal-photo-dl { opacity: 1; }
      .promo-card:hover { border-color: rgba(255,255,255,0.04); background: #0a0a0a; }
    }
