/* ====================================================
   VARIÁVEIS & RESET GERAL
   ==================================================== */
:root {
    --bg-dark: #080808;
    --bg-card: #121212;
    --bg-card-hover: #1a1a1a;
    --primary-red: #e50914;
    --primary-red-hover: #ff1e27;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --border-color: #222222;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    padding-bottom: 85px;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none;     /* IE 10+ e Edge */
    user-select: none;         /* Impedir seleção de texto */
}

/* Proteção contra arrastar imagens */
img {
    -webkit-user-drag: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Animação Vinil Gira Lento */
.fa-spin-slow {
    animation: fa-spin 8s infinite linear;
}

/* ====================================================
   HEADER & MENU SUPERIOR
   ==================================================== */
.header {
    background: linear-gradient(rgba(8, 8, 8, 0.4), rgba(8, 8, 8, 0.6)), 
                url('img/foto03.jpg') center/cover no-repeat;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-red);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
    z-index: 1001;
}

/* ====================================================
   LOGOMARCA PREMIUM - EFEITO AURA VINIL & NEON
   ==================================================== */
.logo {
    display: flex;
    align-items: center;
    position: relative;
    text-decoration: none;
    padding: 5px;
    color: #ffffff !important;
}

.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    border-radius: 50%;
    background: #000;
    padding: 2px;
    border: 2px solid var(--primary-red);
    box-shadow: 0 0 10px rgba(229, 9, 20, 0.6), 
                0 0 20px rgba(229, 9, 20, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: logoPulse 3s infinite alternate ease-in-out;
}

.logo:hover .logo-img {
    transform: scale(1.18) rotate(360deg);
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 
                0 0 30px var(--primary-red), 
                0 0 45px var(--primary-red-hover);
}

.logo-text {
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-left: 12px;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(229, 9, 20, 0.8);
}

.logo-text span {
    color: var(--primary-red) !important;
}

@keyframes logoPulse {
    0% {
        box-shadow: 0 0 8px rgba(229, 9, 20, 0.5), 0 0 15px rgba(229, 9, 20, 0.2);
    }
    100% {
        box-shadow: 0 0 18px rgba(229, 9, 20, 0.9), 0 0 32px rgba(255, 30, 39, 0.6);
    }
}

/* Links do Menu Desktop */
.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-red);
}

/* Botão Mobile Hambúrguer */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1002;
}

/* ====================================================
   HERO BANNER
   ==================================================== */
.hero {
    position: relative;
    height: 85vh;
    background: linear-gradient(rgba(0,0,0,0.85), rgba(8,8,8,1)), 
                url('https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?q=80&w=1600') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 70px;
}

.badge {
    background-color: var(--primary-red);
    color: var(--text-light);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-transform: uppercase;
    margin: 20px 0;
    letter-spacing: 2px;
}

.hero-content p {
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* ====================================================
   BOTÕES GERAIS
   ==================================================== */
.btn {
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(229, 9, 20, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--text-light);
}

.btn-outline:hover {
    background-color: var(--primary-red);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ====================================================
   SEÇÕES GERAIS
   ==================================================== */
.services, .sets-section, .sac-section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.section-title span {
    color: var(--primary-red);
}

.subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-top: -30px;
    margin-bottom: 40px;
}

/* ====================================================
   SLIDER DE EVENTOS & PATROCINADORES (COM IMAGEM DE FUNDO)
   ==================================================== */
.events-slider-section {
    padding: 30px 0;
    background-color: #0d0d0d;
    border-bottom: 1px solid var(--border-color);
}

.slider-container {
    position: relative;
    border: 1px solid var(--primary-red);
    border-radius: 12px;
    min-height: 260px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: fadeIn 0.6s ease-in-out;
}

.slide.active {
    display: block;
    position: relative;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(8, 8, 8, 0.95) 0%, rgba(8, 8, 8, 0.75) 50%, rgba(8, 8, 8, 0.3) 100%);
    z-index: 1;
}

.slide-inner {
    position: relative;
    z-index: 2;
    padding: 30px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 260px;
}

.slide-badge {
    align-self: flex-start;
    background: var(--primary-red);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.slide-badge.sponsor-badge {
    background: #e67e22;
}

.slide-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.slide-content p {
    color: #ddd;
    font-size: 0.95rem;
    margin-bottom: 10px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.slide-sponsor {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #aaa;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    padding-top: 8px;
}

.slide-sponsor .sponsor-name {
    color: #fff;
    margin-left: 5px;
}

/* Controls Banner Slider */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--primary-red);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--primary-red);
}

.slider-btn.prev { left: 12px; }
.slider-btn.next { right: 12px; }

.slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--primary-red);
    transform: scale(1.2);
}

/* ====================================================
   ESTILO DO CRONÔMETRO NEON DO BANNER (ALINHAMENTO HORIZONTAL)
   ==================================================== */
.countdown-wrapper {
    margin: 12px 0 18px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.countdown-label {
    font-size: 0.85rem;
    color: #00f0ff;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 6px;
}

.countdown-timer {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.65);
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(0, 240, 255, 0.4);
    width: fit-content;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 42px;
}

.time-box span {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 8px #ff007f;
    line-height: 1;
}

.time-box small {
    font-size: 0.65rem;
    color: #aaa;
    text-transform: uppercase;
    margin-top: 3px;
}

.countdown-timer .separator {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff007f;
    margin-bottom: 12px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

/* ====================================================
   CARDS DÉCADAS
   ==================================================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

.card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
}

.card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    background-color: var(--bg-card-hover);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
}

.card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ====================================================
   GRID DE SETS RETRO
   ==================================================== */
.sets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.set-card {
    background-color: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.set-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.25);
}

.set-img-wrapper {
    height: 115px;
    background: linear-gradient(135deg, #250406 0%, #080808 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-overlay {
    width: 48px;
    height: 48px;
    background-color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 0 12px rgba(229, 9, 20, 0.5);
}

.set-card:hover .play-overlay {
    transform: scale(1.12);
    background-color: var(--primary-red-hover);
    box-shadow: 0 0 18px rgba(255, 30, 39, 0.8);
}

.play-icon {
    font-size: 1.2rem;
    color: #fff;
    margin-left: 3px;
}

.set-info {
    padding: 14px 16px;
}

.set-info .genre {
    color: var(--primary-red);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.set-info h3 {
    font-size: 1.1rem;
    margin: 4px 0 6px 0;
    color: #ffffff;
}

.set-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.35;
    margin: 0;
}

/* ====================================================
   GALERIA DE FOTOS
   ==================================================== */
.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 200px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ====================================================
   SLIDER DE PATROCINADORES
   ==================================================== */
.sponsors-section {
    background: #080808;
    padding: 50px 0;
    border-top: 2px solid #1a1a1a;
    border-bottom: 2px solid #1a1a1a;
    text-align: center;
}

.sponsor-fade-banner {
    width: 100%;
    max-width: 800px;
    height: 400px;
    margin: 0 auto;
    background-color: #141414;
    border: 2px solid #2a2a2a;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.sponsor-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.sponsor-slide.active {
    opacity: 1;
    visibility: visible;
}

.sponsor-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.sponsor-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: 1px solid #333;
    font-size: 24px;
    padding: 12px 18px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.sponsor-btn:hover {
    background: #e50914;
    border-color: #e50914;
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.sponsor-dots {
    position: absolute;
    bottom: 15px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.sponsor-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.sponsor-dot.active {
    background: #e50914;
    transform: scale(1.2);
}

/* ====================================================
   PLAYER DE ÁUDIO FIXO & EQUALIZADOR
   ==================================================== */
.audio-player-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #111;
    border-top: 2px solid var(--primary-red);
    padding: 12px 0;
    z-index: 1000;
}

.player-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.track-disc {
    font-size: 2rem;
    color: var(--primary-red);
}

.track-title-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.player-info strong {
    font-size: 0.95rem;
}

.player-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.player-controls button {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.3rem;
    cursor: pointer;
    transition: color 0.2s;
}

.player-controls button:hover {
    color: var(--primary-red);
}

#btn-play-pause {
    font-size: 2rem;
    color: var(--primary-red);
}

.audio-visualizer {
    display: inline-flex;
    align-items: flex-end;
    gap: 3px;
    height: 16px;
}

.audio-visualizer .bar {
    width: 3px;
    height: 4px;
    background-color: var(--primary-red);
    border-radius: 2px;
    transition: height 0.2s ease;
}

.audio-visualizer.playing .bar {
    animation: soundWaves 1.2s ease-in-out infinite alternate;
}

.audio-visualizer.playing .bar:nth-child(1) { animation-delay: 0.1s; }
.audio-visualizer.playing .bar:nth-child(2) { animation-delay: 0.4s; }
.audio-visualizer.playing .bar:nth-child(3) { animation-delay: 0.2s; }
.audio-visualizer.playing .bar:nth-child(4) { animation-delay: 0.5s; }
.audio-visualizer.playing .bar:nth-child(5) { animation-delay: 0.3s; }

@keyframes soundWaves {
    0% { height: 4px; }
    100% { height: 16px; }
}

/* ====================================================
   FORMULÁRIO SAC / CONTATO
   ==================================================== */
.sac-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.sac-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.sac-info p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-list i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.sac-form .form-group {
    margin-bottom: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.sac-form label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: var(--text-muted);
}

.sac-form label i {
    color: var(--primary-red);
}

.sac-form input, 
.sac-form select, 
.sac-form textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-light);
    font-family: var(--font-body);
}

.sac-form input:focus, 
.sac-form select:focus, 
.sac-form textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-status {
    margin-top: 15px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.4);
    display: none;
}

/* ====================================================
   WIDGET FLUTUANTE DE WHATSAPP
   ==================================================== */
.wa-widget {
    position: fixed;
    bottom: 85px;
    right: 20px;
    z-index: 1001;
}

.wa-toggle-btn {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    border: none;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.5);
    position: relative;
    transition: transform 0.3s ease;
}

.wa-toggle-btn:hover {
    transform: scale(1.1);
}

.wa-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ff1e27;
    color: #fff;
    font-size: 0.7rem;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
}

.wa-popup {
    display: none;
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 300px;
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease-out;
}

.wa-popup.active {
    display: block;
}

.wa-header {
    background: #075e54;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-avatar {
    width: 38px;
    height: 38px;
    background: #128c7e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
}

.wa-info strong {
    display: block;
    font-size: 0.85rem;
    color: #fff;
}

.wa-info small {
    color: #25d366;
    font-size: 0.7rem;
}

.wa-online-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #25d366;
    border-radius: 50%;
    margin-right: 3px;
}

.wa-close {
    margin-left: auto;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}

.wa-body {
    padding: 15px;
    background: #181818;
    font-size: 0.85rem;
    color: #ddd;
}

.wa-footer {
    padding: 10px 15px 15px 15px;
    background: #181818;
}

.wa-btn-start {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.85rem;
    transition: background 0.3s ease;
}

.wa-btn-start:hover {
    background: #20ba5a;
}

/* ====================================================
   RODAPÉ
   ==================================================== */
.footer {
    background-color: #0b0b0b;
    padding: 30px 0 15px 0;
    text-align: center;
    border-top: 1px solid #1f1f1f;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-socials a {
    color: #888;
    font-size: 1.4rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #141414;
    border: 1px solid #222;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    color: #fff;
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.4);
}

/* Assinatura em h6 (Visível, Fina e Discreta) */
.footer h6 {
    color: #666;
    font-weight: 300;
    font-size: 0.75rem;
    margin-top: 8px;
    text-transform: lowercase;
}

/* Link invisível no ponto final para o Admin */
.link-admin-discreto {
    color: inherit;
    text-decoration: none;
    cursor: default;
}

.link-admin-discreto:hover {
    cursor: pointer;
}

/* ====================================================
   RESPONSIVO (CELULARES & TABLETS)
   ==================================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 1140px) {
    .sponsor-fade-banner {
        max-width: 95%;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(12, 12, 12, 0.98);
        flex-direction: column;
        padding: 20px 0;
        border-bottom: 2px solid var(--primary-red);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.9);
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-menu a {
        padding: 12px 20px;
        text-align: center;
        width: 100%;
        display: block;
    }

    .logo-img {
        height: 40px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .sac-wrapper {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .slide-inner { 
        padding: 25px 20px 35px 20px; 
    }

    .slide-content h2 { 
        font-size: 1.3rem; 
    }

    .slider-btn { 
        display: none; 
    }

    .slide-overlay {
        background: rgba(8, 8, 8, 0.85);
    }

    .countdown-timer {
        gap: 6px;
        padding: 6px 10px;
    }

    .time-box {
        min-width: 32px;
    }

    .time-box span {
        font-size: 1.1rem;
    }

    .wa-widget {
        bottom: 90px;
        right: 15px;
    }

    .wa-popup {
        width: 280px;
        right: 0;
    }
}
/* ====================================================
   ESTILOS BANNER E MODAL LGPD
   ==================================================== */
.lgpd-banner {
    position: fixed;
    bottom: 90px; /* Fica logo acima da sua barra de áudio */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: #111111;
    border: 2px solid #ff0000; /* Cor vermelha do seu tema */
    border-radius: 8px;
    padding: 15px 20px;
    z-index: 99999;
    box-shadow: 0 4px 25px rgba(255, 0, 0, 0.3);
}

.lgpd-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.lgpd-content p {
    font-size: 0.85rem;
    color: #e0e0e0;
    margin: 0;
    line-height: 1.4;
}

.lgpd-content p i {
    color: #ff0000;
    margin-right: 5px;
}

.lgpd-content a {
    color: #ff0000;
    text-decoration: underline;
}

/* Modal de Privacidade */
.privacy-modal {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(4px);
}

.privacy-modal-content {
    background-color: #121212;
    border: 1px solid #ff0000;
    margin: 8% auto;
    padding: 25px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    color: #ddd;
}

.privacy-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.privacy-close:hover {
    color: #ff0000;
}

.privacy-body p {
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .lgpd-content {
        flex-direction: column;
        text-align: center;
    }
}
/* ====================================================
   MODO BALADA
   ==================================================== */
body.modo-balada {
    background-color: #000000 !important;
    filter: brightness(0.9);
}

body.modo-balada h1, 
body.modo-balada h2.section-title,
body.modo-balada .logo-text span {
    animation: neonGlow 1.5s infinite alternate;
}

@keyframes neonGlow {
    0% { text-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000; }
    50% { text-shadow: 0 0 15px #00ffff, 0 0 25px #00ffff; }
    100% { text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff; }
}

.btn-balada-toggle {
    background: linear-gradient(45deg, #ff0055, #7a00ff);
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 0.85rem;
}

.btn-balada-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(255, 0, 85, 0.8);
}

/* ====================================================
   GALERIA DE VÍDEOS (REELS / TIKTOK / YOUTUBE)
   ==================================================== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.video-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: transform 0.3s, border-color 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: #ff0000;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    height: 0;
}

.video-wrapper iframe, .video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}