/* ============================================================
   TOKENS GLOBAIS
============================================================ */

:root {
    /* ── CORES ── */
    --ouro: #D6B377;
    --ouro-suave: #cdb68c;
    --ouro-claro: #f0d8b0;
    --ouro-medio: #d4b87a;
    --ouro-escuro: #a88a3e;
    --laranja: #ff8c00;
    --roxo: #b14fff;
    --preto: #050505;
    --preto-claro: #141414;
    --preto-medio: #1a1a1a;
    --fundo-escuro: #10141d;
    --fundo-card: #1e1e1e;
    --branco: #ffffff;
    --texto-mutado: #cccccc;
    --texto-dourado: #e3bf81;

    /* ── FONTES ── */
    --fonte-titulo: 'Cinzel', 'Times New Roman', serif;
    --fonte-corpo: 'Poppins', sans-serif;
    --peso-leve: 300;
    --peso-normal: 400;
    --peso-medio: 600;
    --peso-negrito: 700;
    --tamanho-pequeno: 0.75rem;
    --tamanho-normal: 0.85rem;
    --tamanho-medio: 1rem;
    --tamanho-grande: clamp(22px, 4vw, 45px);
    --tamanho-hero: clamp(2.5rem, 8vw, 4.5rem);
    --tamanho-marca: clamp(2rem, 5vw, 4rem);

    /* ── TRANSIÇÕES ── */
    --transicao: 0.35s cubic-bezier(.4, 0, .2, 1);

    /* ── BORDAS ── */
    --raio-pequeno: 6px;
    --raio-medio: 12px;
    --raio-grande: 18px;
    --borda-botao: 1px solid rgba(184,156,110,0.7);
    --borda-seta: 1px solid rgba(184,156,110,0.4);

    /* aliases legados */
    --gold: #D6B377;
    --gold-soft: #cdb68c;
    --gold-pale: #f0d8b0;
    --gold-light: #d4b87a;
    --gold-dark: #a88a3e;
    --font-display: 'Cinzel', 'Times New Roman', serif;
    --font-body: 'Poppins', sans-serif;
    --text-color: #ffffff;
    --text-muted: #cccccc;
    --transition: 0.35s cubic-bezier(.4, 0, .2, 1);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --dark-bg: #121212;
    --card-bg: #1e1e1e;
    --black: #050505;
    --black-light: #141414;
    --black-medium: #1a1a1a;
    --orange: #ff8c00;
    --purple: #b14fff;
}

/* ============================================================
   RESET E BASE
============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    background: #0b021a;
}

html {
    scroll-behavior: smooth;
}

/* ============================================================
   TIPOGRAFIA GLOBAL
============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--fonte-titulo);
    font-weight: var(--peso-negrito);
}

h3, h4, h5, h6 {
    font-weight: var(--peso-medio);
}

a {
    font-family: var(--fonte-titulo);
    font-weight: var(--peso-medio);
}

p, span, li, label {
    font-family: var(--fonte-corpo);
    font-weight: var(--peso-normal);
}

button, .btn, .btn-nav, .btn-share, .btn-wpp,
.btn-share-partner, .on-btn,
input[type="button"], input[type="submit"] {
    font-family: var(--fonte-titulo);
    font-weight: var(--peso-medio);
    letter-spacing: 0.05em;
}



/* ============================================================
   CARDS
============================================================ */
.sec-header {padding-top: 70px;}
.secao-header {
    max-width: 1500px;
    margin: 0 auto;
    padding: 170px 10px;
    background: #0b021a;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 10px;
    padding: 30px 10px;
    align-items: stretch;
    background: #0b021a;
}

/* ============================================================
   SEÇÕES
============================================================ */
.section-tag, .sec-tag {
    font-weight: 700;
    font-size: 12px;
    color: var(--ouro);
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.titulo-duas-cores, .sec-title {
    font-weight: 700;
    font-size: 45px;
    line-height: 1.2;
    white-space: normal;
    padding: 0 20px;
    color: var(--branco);
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: 0.08em;
}

.titulo-duas-cores span, .sec-title span {
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--ouro);
}

.titulo-duas-cores::after, .sec-title::after {
    content: "";
    display: block;
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D6B377, #D6B377, transparent);
    margin: 15px auto 0;
}

.section-subtitle, .sec-sub {
    font-weight: 700;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.2rem;
    display: block;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    color: var(--texto-dourado);
    margin-top: 10px;
}

.section {
    display: none;
    background: #10141d;
}

#sessao-1 {
    display: block;
}

.section:target {
    display: block;
    animation: fadeInUp 0.4s forwards;
}

.container:has(.section:target) #sessao-1:not(:target) {
    display: none;
}

.btn-nav {
    background: transparent;
    color: var(--texto-mutado);
    border: 1px solid rgba(214, 179, 119, 0.35);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s ease;
    text-align: center;
    cursor: pointer;
}

.btn-nav:hover {
    color: var(--ouro);
    border-color: var(--ouro);
    transform: translateY(-2px);
}

.card-hours::before {
    flex-shrink: 0;
    margin-top: 1px;
    content: "";
    width: 14px;
    height: 14px;
    color: var(--ouro);
    display: inline-block;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8zm.5-13H11v6l5.2 3.1.8-1.2-4.5-2.7z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8zm.5-13H11v6l5.2 3.1.8-1.2-4.5-2.7z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask-size: contain;
}

.addr::before {
    flex-shrink: 0;
    margin-top: 4px;
    content: "";
    width: 12px;
    height: 12px;
    display: inline-block;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask-size: contain;
}

.btn-share::before {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23D6B377'%3E%3Cpath d='M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92c0-1.61-1.31-2.92-2.92-2.92z'/%3E%3C/svg%3E");
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    border: 1.5px solid var(--ouro);
    transition: all 0.25s ease;
}

/* ============================================================
   GALERIA VIDA NOTURNA
============================================================ */
.vida-noturna-intro {
    background: #0B021a;
}

.linha-elegante-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: auto;
    padding: 30px 0 0;
    background: #0B021a;
}

.linha-elegante {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 300px;
    height: 60px;
    gap: 2px;
}

.linha-elegante span {
    display: block;
    width: 12px;
    height: 10px;
    border-radius: 2px;
    background: linear-gradient(to top, #0ff 0%, #f0f 60%, #ff0000 100%);
    animation: vibrar 1.2s infinite ease-in-out;
}

.linha-elegante span:nth-child(odd) { animation-delay: 0.2s; }
.linha-elegante span:nth-child(even) { animation-delay: 0.2s; }
.linha-elegante span:nth-child(3n) { animation-delay: 0.1s; }
.linha-elegante span:nth-child(4n) { animation-delay: 0.3s; }

.palavras-animadas {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    color: #18E8FF;
    text-shadow: 0 0 5px #ff00ff, 0 0 10px #0ff, 0 0 15px #f0f;
}

.palavras-animadas span {
    animation: piscar 1.5s infinite alternate;
}

.cluba-gallery {
    background: #0B021a;
    width: 100%;
    padding: 0 90px 20px;
}

.cluba-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
     background: #0B021a;
}

.cluba-gallery-item {
    position: relative;
    aspect-ratio: 1;
    border: 1px solid var(--ouro);
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
}

.cluba-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.cluba-gallery-item:hover .cluba-gallery-image,
.cluba-gallery-item:focus-within .cluba-gallery-image {
    transform: scale(1.08);
    opacity: 0.9;
}

.cluba-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    opacity: 0;
    transition: opacity 0.35s ease, background 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    pointer-events: none;
}

.cluba-gallery-item:hover .cluba-gallery-overlay,
.cluba-gallery-item:focus-within .cluba-gallery-overlay {
    opacity: 1;
    pointer-events: auto;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
}

.cluba-titulo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 12px;
    text-transform: uppercase;
    line-height: 1.2;
    width: 100%;
}

.cluba-data, .cluba-horario, .cluba-local {
    font-size: 0.9rem;
    color: var(--branco);
    margin: 0.2rem 0;
    line-height: 1.4;
    display: inline-block;
    position: relative;
    padding-left: 28px;
}

.cluba-data::before { content: "📅"; position: absolute; left: 0; top: 50%; transform: translateY(-50%); }
.cluba-horario::before { content: "⏰"; position: absolute; left: 0; top: 50%; transform: translateY(-50%); }
.cluba-local::before { content: "📍"; position: absolute; left: 0; top: 50%; transform: translateY(-50%); }

/* ============================================================
   SEÇÕES LADO A LADO
============================================================ */
.secoes-lado-a-lado {
    display: flex;
    gap: 30px;
    max-width: 1800px;
    margin: 0 auto;
    padding: 130px 20px;
    align-items: stretch;
    background: #0B021a;
}

.secoes-lado-a-lado > * {
    flex: 1;
    width: 50%;
}

.lx-card {
    display: flex;
    background: #14010c;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(214, 179, 119, 0.15);
    height: 100%;
}

.lx-card:hover {
    border: 1px solid rgba(214, 179, 119, 1);
}

.lx-left {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 30px;
    flex-shrink: 0;
    background: #14010c;
}

.lx-right {
    width: 50%;
    height: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.lx-tag {
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #b89c6e;
    margin-bottom: 3rem;
    display: block;
}

.lx-brand {
    font-size: 40px;
    letter-spacing: 0.12em;
    color: #fdfcfa;
    line-height: 1;
    margin-bottom: 1rem;
     background: #14010c;
}

.lx-tagline {
    font-style: italic;
    font-size: 1rem;
    color: rgba(253, 252, 250, 0.55);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.banner-brindes {
    background: #0a0e14;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(214, 179, 119, 0.15);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
}

.banner-brindes:hover {
    border: 1px solid rgba(214, 179, 119, 1);
}

.banner-link {
    display: block;
    width: 100%;
}

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


.footer { background: #0B021a;}
/* ============================================================
   ANIMAÇÕES
============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes vibrar {
    0%, 100% { height: 10px; }
    50% { height: 60px; }
}

@keyframes piscar {
    0% { opacity: 0.3; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.1); }
    100% { opacity: 0.3; transform: scale(0.9); }
}

@keyframes hint-right {
    0%, 100% { transform: translateX(0); opacity: 0; }
    50% { transform: translateX(5px); opacity: 0.9; }
}

@keyframes hint-left {
    0%, 100% { transform: translateX(0); opacity: 0; }
    50% { transform: translateX(-5px); opacity: 0.9; }
}

/* ============================================================
   PARCEIROS
============================================================ */
.partners-section {
    background: #0B021a; 
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
    padding: 0 30px ;
    background: #0B021a; 
   
}

.partner-card {
    background: #111;
    border: 1px solid rgba(214, 179, 119, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-width: 0;
    margin-bottom: 70px;
}

.partner-card:hover {
    border-color: #c9a55c;
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(201,165,92,0.12);
}

.partner-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #1a1a1a;
    flex-shrink: 0;
}

.partner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.partner-card:hover .partner-image img {
    transform: scale(1.05);
}

.partner-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.partner-category {
    font-family: var(--fonte-titulo);
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ouro);
    margin-bottom: 4px;
}

.partner-content h3 {
    font-family: var(--fonte-titulo);
    font-size: 15px;
    font-weight: var(--peso-medio);
    color: var(--branco);
    margin-bottom: 8px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.partner-address, .partner-phone {
    font-family: var(--fonte-corpo);
    display: flex;
    align-items: flex-start;
    gap: 5px;
    font-size: 13px;
    color: #777;
    margin-bottom: 5px;
    line-height: 1.4;
}

.partner-address svg, .partner-phone svg {
    flex-shrink: 0;
    color: #c9a55c;
    margin-top: 1px;
}

.partner-description {
    font-family: var(--fonte-corpo);
    font-size: 14px;
    color: #999;
    line-height: 1.5;
    margin: 8px 0 10px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-share-partner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    background: #0c0c0c56;
    border: 0.5px solid rgba(214,179,119,0.4);
    color: #A9A9A9;
    padding: 8px;
    font-size: 13px;
    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 8px;
}

.btn-share-partner:hover {
    border-color: #c9a55c;
    color: #c9a55c;
    background: rgba(34,34,33,0.07);
}

/* ============================================================
   CARROSSEL
============================================================ */
.car-wrap {
    background: #0B021a;
}

.car-card {
    background: #0B021a;
}

/* ============================================================
   RESPONSIVO
============================================================ */
@media (min-width: 1400px) {
    .partners-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); padding: 0 40px; }
    .cluba-gallery { padding: 0 120px; }
}

@media (min-width: 1024px) {
    .partners-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .cluba-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .titulo-duas-cores, .sec-title { font-size: 32px; }
    .cards { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 0 20px 20px; }
    .partners-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0 20px; gap: 15px; }
    .cluba-gallery { padding: 0 30px; }
    .cluba-gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 15px; }
    .cluba-gallery-overlay { padding: 8px; }
    .cluba-titulo { font-size: 18px; margin-bottom: 0; }
    .btn-nav { padding: 8px 14px; font-size: 0.75rem; }
    .btn-share::before { width: 15px; height: 15px; background-size: 14px; }
    .lx-left { padding: 2.5rem 3rem 2.5rem; }
    .lx-tagline { margin-bottom: 1.8rem; font-size: 0.9rem; }
    .lx-brand { font-size: 36px; }
    .lx-tag { margin-bottom: 1.5rem; }
}

@media (max-width: 768px) {
    html, body { overflow-x: hidden; width: 100%; }
    .titulo-duas-cores, .sec-title { font-size: 26px; padding: 0 16px; }
    .section-subtitle, .sec-sub { padding: 0 20px; font-size: 0.7rem; }
    .partners-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; padding: 0 20px; }
    .cluba-gallery { padding: 0 16px; }
    .cluba-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .cluba-gallery-overlay { padding: 10px; }
    .btn-nav { padding: 8px 12px; font-size: 0.72rem; }
    .secoes-lado-a-lado { flex-direction: column; gap: 30px; }
    .secoes-lado-a-lado > * { width: 100%; }
    .lx-card { flex-direction: column; height: auto; }
    .lx-right { width: 100%; order: 1; border-radius: 14px 14px 0 0; }
    .lx-right img { width: 100%; height: auto; border-radius: 14px 14px 0 0; }
    .lx-left { width: 100%; order: 2; padding: 25px 20px; text-align: center; }
    .lx-tagline { max-width: 100%; }
}

@media (max-width: 599px) {
    .titulo-duas-cores, .sec-title { font-size: 22px; padding: 0 12px; }
    .section-subtitle, .sec-sub { padding: 0 16px; letter-spacing: 0.1rem; }
    .partners-grid { grid-template-columns: 1fr; gap: 20px; padding: 0 30px; }
    .cluba-gallery { padding: 0 12px; }
    .cluba-gallery-grid { grid-template-columns: 1fr; gap: 20px; padding: 0 20px; }
    .cluba-titulo { font-size: 20px; margin-bottom: 5px; }
    .btn-nav { padding: 8px 10px; font-size: 0.7rem; letter-spacing: 0.5px; }
    .sec-header, .secao-header { padding: 30px 0; }
}

@media (max-width: 380px) {
    .titulo-duas-cores, .sec-title { font-size: 20px; }
    .btn-nav { font-size: 0.65rem; padding: 7px 8px; }
    .cluba-titulo { font-size: 16px; margin-bottom: 0; }
    .cluba-gallery-overlay { padding: 8px; }
}

@media (min-width: 640px) {
    .on-hero-cta { flex-direction: row; }
}


:root {
    /* ── CORES ── */
    --ouro: #D6B377;
    --ouro-suave: #cdb68c;
    --ouro-claro: #f0d8b0;
    --ouro-medio: #d4b87a;
    --ouro-escuro: #a88a3e;
    --laranja: #ff8c00;
    --roxo: #b14fff;
    --preto: #050505;
    --preto-claro: #141414;
    --preto-medio: #1a1a1a;
    --fundo-escuro: #10141d;
    --fundo-card: #1e1e1e;
    --branco: #ffffff;
    --texto-mutado: #cccccc;
    --texto-dourado: #e3bf81;

    /* ── FONTES ── */
    --fonte-titulo: 'Cinzel', 'Times New Roman', serif;
    --fonte-corpo: 'Poppins', sans-serif;
    --peso-leve: 300;
    --peso-normal: 400;
    --peso-medio: 600;
    --peso-negrito: 700;
    --tamanho-pequeno: 0.75rem;
    --tamanho-normal: 0.85rem;
    --tamanho-medio: 1rem;
    --tamanho-grande: clamp(22px, 4vw, 45px);
    --tamanho-hero: clamp(2.5rem, 8vw, 4.5rem);
    --tamanho-marca: clamp(2rem, 5vw, 4rem);

    /* ── TRANSIÇÕES ── */
    --transicao: 0.35s cubic-bezier(.4, 0, .2, 1);

    /* ── BORDAS ── */
    --raio-pequeno: 6px;
    --raio-medio: 12px;
    --raio-grande: 18px;
    --borda-botao: 1px solid rgba(184,156,110,0.7);
    --borda-seta: 1px solid rgba(184,156,110,0.4);

  

    /* aliases legados */
    --gold: #D6B377;
    --gold-soft: #cdb68c;
    --gold-pale: #f0d8b0;
    --gold-light: #d4b87a;
    --gold-dark: #a88a3e;
    --font-display: 'Cinzel', 'Times New Roman', serif;
    --font-body: 'Poppins', sans-serif;
    --text-color: #ffffff;
    --text-muted: #cccccc;
    --transition: 0.35s cubic-bezier(.4, 0, .2, 1);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --dark-bg: #121212;
    --card-bg: #1e1e1e;
    --black: #050505;
    --black-light: #141414;
    --black-medium: #1a1a1a;
    --orange: #ff8c00;
    --purple: #b14fff;
}

/* ============================================================
   RESET E BASE
============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    background: #151921;
}

html {
    scroll-behavior: smooth;
}

/* ============================================================
   TIPOGRAFIA GLOBAL
============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--fonte-titulo);
    font-weight: var(--peso-negrito);
}

h3, h4, h5, h6 {
    font-weight: var(--peso-medio);
}

a {
    font-family: var(--fonte-titulo);
    font-weight: var(--peso-medio);
}

p, span, li, label {
    font-family: var(--fonte-corpo);
    font-weight: var(--peso-normal);
}

button, .btn, .btn-nav, .btn-share, .btn-wpp,
.btn-share-partner, .on-btn,
input[type="button"], input[type="submit"] {
    font-family: var(--fonte-titulo);
    font-weight: var(--peso-medio);
    letter-spacing: 0.05em;
}




/* ============================================================
   SEÇÕES
============================================================ */

.section-tag, .sec-tag {
    font-family: var(--fonte-titulo);
    font-weight: var(--peso-medio);
    font-size: 12px;
    color: var(--ouro);
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.titulo-duas-cores, .sec-title {
    font-family: var(--fonte-titulo);
    font-weight: var(--peso-negrito);
    font-size: var(--tamanho-grande);
    line-height: 1.2;
    white-space: normal;
    padding: 0 20px;
    color: var(--branco);
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: 0.08em;
}

.titulo-duas-cores span, .sec-title span {
    font-family: var(--fonte-titulo);
    font-weight: var(--peso-negrito);
    letter-spacing: 0.08em;
    color: var(--ouro);
}

.titulo-duas-cores::after, .sec-title::after {
    content: "";
    display: block;
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D6B377, #D6B377, transparent);
    margin: 15px auto 0;
}

.section-subtitle, .sec-sub {
    font-family: var(--fonte-corpo);
    font-weight: var(--peso-normal);
    font-size:12px;
    line-height: 1.5;
    letter-spacing: 0.2rem;
    display: block;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    color: var(--texto-dourado);
    margin-top: 10px;
}

/* ============================================================
   SEÇÕES
============================================================ */
.section {
    display: none;
    background: #10141d;
}

#sessao-1 {
    display: block;
}

.section:target {
    display: block;
    animation: fadeInUp 0.4s forwards;
}

.container:has(.section:target) #sessao-1:not(:target) {
    display: none;
}





.btn-nav {
    background: transparent;
    color: var(--texto-mutado);
    border: 1px solid rgba(214, 179, 119, 0.35);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s ease;
    text-align: center;
    cursor: pointer;
}

.btn-nav:hover {
    color: var(--ouro);
    border-color: var(--ouro);
    transform: translateY(-2px);
}

/* ============================================================
   CARDS
============================================================ */
.secao-header {
    max-width: 1500px;
    margin: 0 auto;
    padding: 50px 0;
}




.card-hours::before {
    flex-shrink: 0;
    margin-top: 1px;
    content: "";
    width: 14px;
    height: 14px;
    color: var(--ouro);
    display: inline-block;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8zm.5-13H11v6l5.2 3.1.8-1.2-4.5-2.7z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8zm.5-13H11v6l5.2 3.1.8-1.2-4.5-2.7z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask-size: contain;
}



.addr::before {
    flex-shrink: 0;
    margin-top: 4px;
    content: "";
    width: 12px;
    height: 12px;
    display: inline-block;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask-size: contain;
}


/* ============================================================
   BOTÃO COMPARTILHAR E WHATSAPP
============================================================ */

.btn-share::before {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23D6B377'%3E%3Cpath d='M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92c0-1.61-1.31-2.92-2.92-2.92z'/%3E%3C/svg%3E");
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    border: 1.5px solid var(--ouro);
    transition: all 0.25s ease;
}




/* ============================================================
   GALERIA VIDA NOTURNA
============================================================ */
.vida-noturna-intro {
    background: #10141d;
}

.linha-elegante-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: auto;
    padding: 30px 0 0;
}

.linha-elegante {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 300px;
    height: 60px;
    gap: 2px;
}

.linha-elegante span {
    display: block;
    width: 12px;
    height: 10px;
    border-radius: 2px;
    background: linear-gradient(to top, #0ff 0%, #f0f 60%, #ff0000 100%);
    animation: vibrar 1.2s infinite ease-in-out;
}

.linha-elegante span:nth-child(odd) { animation-delay: 0.2s; }
.linha-elegante span:nth-child(even) { animation-delay: 0.2s; }
.linha-elegante span:nth-child(3n) { animation-delay: 0.1s; }
.linha-elegante span:nth-child(4n) { animation-delay: 0.3s; }

.palavras-animadas {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    color: #18E8FF;
    text-shadow: 0 0 5px #ff00ff, 0 0 10px #0ff, 0 0 15px #f0f;
}

.palavras-animadas span {
    animation: piscar 1.5s infinite alternate;
}

.cluba-gallery {
  
    width: 100%;
    padding: 0 90px 20px;
}

.cluba-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cluba-gallery-item {
    position: relative;
    aspect-ratio: 1;
    border: 1px solid var(--ouro);
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
}

.cluba-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.cluba-gallery-item:hover .cluba-gallery-image,
.cluba-gallery-item:focus-within .cluba-gallery-image {
    transform: scale(1.08);
    opacity: 0.9;
}

.cluba-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    opacity: 0;
    transition: opacity 0.35s ease, background 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    pointer-events: none;
}

.cluba-gallery-item:hover .cluba-gallery-overlay,
.cluba-gallery-item:focus-within .cluba-gallery-overlay {
    opacity: 1;
    pointer-events: auto;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
}

.cluba-titulo {
    font-family: var(--fonte-titulo);
    font-size: 1.2rem;
    font-weight: var(--peso-medio);
    color: #FFF;
    margin-bottom: 12px;
    text-transform: uppercase;
    line-height: 1.2;
    width: 100%;
}

.cluba-data, .cluba-horario, .cluba-local {
    font-family: var(--fonte-corpo);
    font-size: 0.9rem;
    color: var(--branco);
    margin: 0.2rem 0;
    line-height: 1.4;
    display: inline-block;
    position: relative;
    padding-left: 28px;
}

.cluba-data::before { content: "📅"; position: absolute; left: 0; top: 50%; transform: translateY(-50%); }
.cluba-horario::before { content: "⏰"; position: absolute; left: 0; top: 50%; transform: translateY(-50%); }
.cluba-local::before { content: "📍"; position: absolute; left: 0; top: 50%; transform: translateY(-50%); }









