/* ==========================================================================
   1. VARIÁVEIS DE TEMA (DARK & LIGHT)
   ========================================================================== */
:root {
    /* Tema Dark (Padrão) */
    --bg-base: #0a0d14;
    --bg-blob-1: rgba(255, 0, 128, 0.28);
    --bg-blob-2: rgba(0, 212, 255, 0.25);
    --bg-blob-3: rgba(112, 0, 255, 0.28);
    --bg-mesh: rgba(255, 255, 255, 0.03);
    --glow-color: rgba(0, 212, 255, 0.15);
    --particle-color: rgba(255, 255, 255, 0.5);
    --text-color: #f8fafc;
}

[data-theme="light"], body.light-mode {
    /* Tema Light */
    --bg-base: #f1f5f9;
    --bg-blob-1: rgba(255, 99, 132, 0.35);
    --bg-blob-2: rgba(54, 162, 235, 0.35);
    --bg-blob-3: rgba(153, 102, 255, 0.35);
    --bg-mesh: rgba(15, 23, 42, 0.04);
    --glow-color: rgba(37, 99, 235, 0.15);
    --particle-color: rgba(15, 23, 42, 0.35);
    --text-color: #0f172a;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    user-select: none; /* Bloqueia seleção de texto para proteção */
    -webkit-user-select: none;
    -ms-user-select: none;
}

body {
    background-color: var(--bg-base);
    color: var(--text-color);
    transition: background-color 0.5s ease, color 0.5s ease;
    position: relative;
    min-height: 100vh;
}

/* ==========================================================================
   2. CAMADAS DE FUNDO ANIMADO PROFISSIONAL
   ========================================================================== */
.animated-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.color-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    will-change: transform;
    transition: background 0.5s ease;
}

.blob-1 {
    width: 50vw;
    height: 50vw;
    background: var(--bg-blob-1);
    top: -10vw;
    left: -10vw;
    animation: moveBlob1 18s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.blob-2 {
    width: 45vw;
    height: 45vw;
    background: var(--bg-blob-2);
    bottom: -10vw;
    right: -5vw;
    animation: moveBlob2 22s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.blob-3 {
    width: 40vw;
    height: 40vw;
    background: var(--bg-blob-3);
    top: 35vh;
    left: 30vw;
    animation: moveBlob3 20s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

@keyframes moveBlob1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(18vw, 22vh) scale(1.15); }
}

@keyframes moveBlob2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-22vw, -18vh) scale(1.1); }
}

@keyframes moveBlob3 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-15vw, 15vh) scale(0.85); }
}

.bg-mesh-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, var(--bg-mesh) 1px, transparent 1px),
        linear-gradient(to bottom, var(--bg-mesh) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 90%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 90%);
}

.bg-interactive-glow {
    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(50px);
    pointer-events: none;
}

#bg-particles-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   3. HEADER & MENU DE NAVEGAÇÃO
   ========================================================================== */
.site-header {
    width: 100%;
    height: 60px;
    padding: 0 15px;
    background: rgba(10, 13, 20, 0.85);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    display: flex;
    align-items: center;
}

.site-header-inner {
    max-width: 1250px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.site-brand {
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 2;
}

.site-brand-logo {
    max-height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
    pointer-events: none;
}

.site-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 12px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.site-nav a {
    color: #00ff66;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s, opacity 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    height: 100%;
}

.site-nav a:hover {
    opacity: 0.8;
}

.header-right-side {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    height: 100%;
}

.weather-widget {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-color);
    background: rgba(125, 125, 125, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    font-size: 0.85rem;
    font-weight: 600;
    transition: border-color 0.2s, background 0.2s;
}

.weather-widget:hover {
    border-color: var(--accent-color, #00ff66);
    background: rgba(125, 125, 125, 0.2);
}

.weather-icon-svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.weather-info {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.weather-city {
    font-size: 0.65rem;
    color: var(--text-dim, #a0aec0);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.weather-temp {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-color);
}

.lang-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.lang-current-btn {
    background: rgba(125, 125, 125, 0.1);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    padding: 4px 10px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: border-color 0.2s, background 0.2s;
}

.lang-current-btn:hover {
    border-color: var(--accent-color, #00ff66);
    background: rgba(125, 125, 125, 0.2);
}

.lang-code-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
}

.lang-dropdown-arrow {
    font-size: 0.65rem;
    color: var(--text-dim, #a0aec0);
    transition: transform 0.2s;
}

.lang-dropdown-wrapper.open .lang-dropdown-arrow {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--menu-bg, #1a202c);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    border-radius: 12px;
    padding: 8px 6px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 105;
    min-width: 80px;
}

.lang-dropdown-wrapper.open .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    border-radius: 6px;
    opacity: 0.7;
    transition: opacity 0.2s, background 0.2s;
    width: 100%;
}

.lang-option-btn:hover {
    opacity: 1;
    background: rgba(125, 125, 125, 0.15);
}

.lang-flag {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 4px rgba(0,0,0,0.3);
    display: block;
    pointer-events: none;
}

.lang-option-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
}

.theme-toggle-btn {
    background: rgba(125, 125, 125, 0.1);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
    color: var(--text-color);
    padding: 0;
    margin-left: 6px;
}

.theme-toggle-btn:hover {
    border-color: var(--accent-color, #00ff66);
    background: rgba(125, 125, 125, 0.2);
    transform: scale(1.05);
}

.theme-toggle-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@keyframes spin-sun {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes float-cloud {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(3px); }
}

@keyframes drop-rain {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(6px); opacity: 0; }
}

.anim-sun-rays {
    transform-origin: 32px 32px;
    animation: spin-sun 12s linear infinite;
}

.anim-cloud {
    animation: float-cloud 3s ease-in-out infinite;
}

.anim-rain {
    animation: drop-rain 0.8s linear infinite;
}

/* ==========================================================================
   4. SEÇÕES E CONTEÚDO PRINCIPAL
   ========================================================================== */
.hero-section {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto 30px auto;
    padding: 0 15px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-margin-top: 70px;
}

.dj-player-side {
    position: absolute;
    right: calc(50% + 360px + 30px);
    top: 30%;
    transform: translateY(-50%);
    width: 175px;
    height: 175px;
    z-index: 10;
}

.chat-side {
    width: 100%;
    max-width: 728px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.chat-iframe-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 66.75%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
}

.chat-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-section {
    margin-bottom: 30px;
    scroll-margin-top: 80px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-section-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.2px;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--accent-color, #00ff66);
    padding-bottom: 5px;
    display: inline-block;
    text-align: left;
    align-self: flex-start;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.video-card {
    background: var(--card-bg, rgba(255, 255, 255, 0.05));
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.video-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color, #00ff66);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    background-color: #000;
    cursor: pointer;
}

.video-wrapper iframe, .video-wrapper div[id^="yt-player-"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    pointer-events: none;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    background: rgba(0, 136, 255, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    transition: background 0.2s, transform 0.2s;
}

.video-wrapper:hover .play-btn {
    background: rgba(0, 136, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btn::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 14px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 3px;
}

.video-title {
    padding: 12px;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-color);
    text-align: left;
    background: rgba(125, 125, 125, 0.05);
    border-top: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    margin-top: 5px;
}

.gallery-card {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gallery-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color, #00ff66);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.gallery-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    pointer-events: none;
}

.gallery-caption {
    position: absolute;
    bottom: 2px;
    left: 12px;
    background: transparent;
    color: #ffffff;
    padding: 0 4px;
    font-size: 0.85rem;
    font-weight: 700;
    pointer-events: none;
    letter-spacing: 0.2px;
    border: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.8);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    object-fit: contain;
    pointer-events: none;
}

.lightbox-caption {
    margin-top: 12px;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 800;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.lightbox-close:hover {
    color: var(--accent-color, #00ff66);
}

.schedule-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    width: 100%;
}

.schedule-tab-btn {
    background: var(--card-bg, rgba(255, 255, 255, 0.05));
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    color: var(--text-color);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 800;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.schedule-tab-btn:hover, .schedule-tab-btn.active {
    background: var(--accent-color, #00ff66);
    border-color: var(--accent-color, #00ff66);
    color: #fff;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 700px;
}

.schedule-item {
    background: var(--card-bg, rgba(255, 255, 255, 0.05));
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    border-radius: 8px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    transition: border-color 0.2s;
}

.schedule-item:hover {
    border-color: var(--accent-color, #00ff66);
}

.schedule-time {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent-color, #00ff66);
    min-width: 80px;
}

.schedule-details {
    flex-grow: 1;
    padding: 0 15px;
}

.schedule-name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-color);
}

.schedule-host {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dim, #a0aec0);
    margin-top: 2px;
}

.team-grid {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.team-card {
    background: var(--card-bg, rgba(255, 255, 255, 0.05));
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    width: 220px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color, #00ff66);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 12px auto;
    border: 2px solid var(--accent-color, #00ff66);
    display: block;
    background-color: #1a1a1a;
    pointer-events: none;
}

.team-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-color);
}

.team-role {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dim, #a0aec0);
    margin-top: 4px;
}

.about-card {
    background: var(--card-bg, rgba(255, 255, 255, 0.05));
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    border-radius: 8px;
    padding: 25px;
    text-align: left;
    width: 100%;
    max-width: 800px;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color, #00ff66);
    margin-bottom: 12px;
}

.about-card p {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.6;
    color: var(--text-color);
}

.auto-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    text-align: left;
}

.auto-news-card {
    background: var(--card-bg, rgba(255, 255, 255, 0.05));
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.auto-news-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color, #00ff66);
}

.auto-news-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    background-color: #1a1a1a;
    display: block;
    pointer-events: none;
}

.auto-news-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.auto-news-date {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent-color, #00ff66);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auto-news-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-color);
    text-decoration: none;
    margin-bottom: 8px;
    line-height: 1.35;
}

.auto-news-title:hover {
    color: var(--accent-color, #00ff66);
}

.auto-news-snippet {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.45;
    margin-bottom: 12px;
    flex-grow: 1;
}

.auto-news-link {
    text-decoration: none;
    color: var(--accent-color, #00ff66);
    font-weight: 800;
    font-size: 0.85rem;
}

.auto-news-loading {
    grid-column: 1 / -1;
    text-align: left;
    padding: 20px 0;
    color: var(--text-dim, #a0aec0);
    font-weight: 800;
}

/* ==========================================================================
   5. RODAPÉ E PLAYER
   ========================================================================== */
.site-footer {
    border-top: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    padding: 20px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dim, #a0aec0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 120px;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(125, 125, 125, 0.1);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

.social-btn svg {
    width: 22px;
    height: 22px;
}

.social-btn.facebook:hover {
    background: rgba(24, 119, 242, 0.15);
    border-color: #1877f2;
}

.social-btn.facebook svg {
    fill: #1877f2;
}

.social-btn.instagram:hover {
    background: rgba(225, 48, 108, 0.15);
    border-color: #e1306c;
}

.social-btn.twitter:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
}

.social-btn.twitter svg {
    fill: var(--text-color);
}

.bottom-player-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bottom-player-wrapper.hidden {
    transform: translateY(90px);
}

.toggle-player-btn {
    position: absolute;
    top: -32px;
    right: 20px;
    transform: none;
    background: var(--header-bg, #0a0d14);
    color: #ff4d4d;
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    border-bottom: none;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 6px 6px 0 0;
    cursor: pointer;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    transition: color 0.2s ease;
}

.toggle-player-btn.show-state {
    color: #00ff66;
}

.full-width-bar {
    width: 100%;
    height: 90px;
    background-color: var(--bg-color, #0a0d14);
    border-top: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-width-bar iframe {
    width: 100%;
    height: 100%;
    border: none;
    transition: opacity 0.3s ease;
}

/* ==========================================================================
   6. RESPONSIVIDADE
   ========================================================================== */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .videos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1140px) {
    .hero-section {
        flex-direction: column;
        gap: 20px;
    }
    .dj-player-side {
        position: static;
        right: auto;
        top: auto;
        transform: none;
        margin-bottom: 10px;
    }
}

@media (max-width: 980px) {
    .site-header {
        height: auto;
        padding: 10px 15px;
    }
    .site-header-inner {
        flex-direction: column;
        gap: 12px;
    }
    .site-nav {
        position: static;
        transform: none;
        flex-wrap: wrap;
        height: auto;
    }
    .header-right-side {
        justify-content: center;
        height: auto;
    }

    img, iframe {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .site-nav a {
        font-size: 14px;
        padding: 6px 10px;
    }

    .auto-news-grid, 
    .videos-grid, 
    .gallery-grid, 
    .team-grid {
        grid-template-columns: 1fr !important;
    }
}

@media screen and (max-width: 480px) {
    .site-brand-logo {
        max-height: 40px;
    }

    .site-nav a {
        font-size: 12px;
    }

    .site-section-title {
        font-size: 1.2rem;
    }
}