/* ===== Variáveis CSS ===== */
:root {
    --primary: #0f3972;
    --primary-dark: #0a2a5e;
    --primary-light: #1a5fbd;
    --secondary: #3250e6;
    --accent: #4952ff;
    --dark: #0a1628;
    --dark-lighter: #132238;
    --light: #F8FAFC;
    --gray: #7b8ca3;
    --gray-light: #CBD5E1;
    
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Quicksand', sans-serif;
    
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --player-height: 90px;
    --header-height: 80px;
}

/* ===== Reset e Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Cabeçalho ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 0 20px rgba(15, 57, 114, 0.5);
}

.logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text h1 {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 2px;
    line-height: 1;
}

.logo-text h1 span {
    color: var(--secondary);
}

.logo-text p {
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-desktop {
    display: flex;
    gap: 8px;
}

.nav-link {
    color: var(--light);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-light);
}

.nav-link.active {
    background: var(--primary);
    color: white;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-mobile {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--dark-lighter);
    padding: 20px;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-mobile.active {
    transform: translateY(0);
    opacity: 1;
}

.nav-mobile .nav-link {
    padding: 15px 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
}

/* ===== Seção Principal ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + 40px) 20px 60px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(15, 57, 114, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(230, 165, 50, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(26, 95, 189, 0.15) 0%, transparent 70%),
        linear-gradient(180deg, var(--dark) 0%, var(--dark-lighter) 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230f3972' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    animation: fadeInUp 1s ease;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 57, 114, 0.3);
    border: 1px solid var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 24px;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(15, 57, 114, 0.5); }
    50% { box-shadow: 0 0 0 15px rgba(15, 57, 114, 0); }
}

.hero-content h2 {
    font-family: var(--font-display);
    font-size: clamp(48px, 10vw, 80px);
    letter-spacing: 3px;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--light) 0%, var(--gray-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 18px;
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--secondary);
    letter-spacing: 2px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
}

.sound-wave {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 60px;
}

.wave-bar {
    width: 6px;
    background: linear-gradient(to top, var(--primary), var(--primary-light));
    border-radius: 3px;
    animation: wave 1s ease infinite;
}

.wave-bar:nth-child(1) { animation-delay: 0.0s; height: 20px; }
.wave-bar:nth-child(2) { animation-delay: 0.1s; height: 35px; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; height: 50px; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; height: 40px; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; height: 55px; }
.wave-bar:nth-child(6) { animation-delay: 0.5s; height: 45px; }
.wave-bar:nth-child(7) { animation-delay: 0.4s; height: 55px; }
.wave-bar:nth-child(8) { animation-delay: 0.3s; height: 40px; }
.wave-bar:nth-child(9) { animation-delay: 0.2s; height: 50px; }
.wave-bar:nth-child(10) { animation-delay: 0.1s; height: 30px; }

@keyframes wave {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1); }
}

/* ===== Seções ===== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title i {
    color: var(--secondary);
    font-size: 36px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 16px;
    margin-bottom: 50px;
}

/* ===== Seção de Download do Aplicativo ===== */
.app-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.app-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.app-text {
    color: white;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.app-badge i {
    font-size: 16px;
}

.app-text h2 {
    font-family: var(--font-display);
    font-size: 48px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.app-text p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 30px;
}

.app-text p strong {
    color: white;
}

.app-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 35px;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.app-feature i {
    color: #4ade80;
    font-size: 18px;
}

.app-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.app-btn i {
    font-size: 32px;
}

.app-btn div {
    display: flex;
    flex-direction: column;
}

.app-btn span {
    font-size: 11px;
    opacity: 0.8;
}

.app-btn strong {
    font-size: 16px;
}

.app-btn.android {
    background: #1a1a1a;
}

.app-btn.android:hover {
    background: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.app-btn.ios {
    background: #1a1a1a;
}

.app-btn.ios:hover {
    background: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.app-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 40px;
    padding: 15px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #1a1a1a;
    border-radius: 20px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-lighter) 100%);
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 60px 20px 20px;
}

.phone-screen img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.phone-app-name {
    font-family: var(--font-display);
    font-size: 24px;
    color: white;
    letter-spacing: 1px;
}

.phone-playing {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    padding: 12px 24px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    animation: pulse-app 2s ease infinite;
}

.phone-playing i {
    font-size: 20px;
}

@keyframes pulse-app {
    0%, 100% { box-shadow: 0 0 0 0 rgba(15, 57, 114, 0.5); }
    50% { box-shadow: 0 0 0 15px rgba(15, 57, 114, 0); }
}

/* Seção App Responsiva */
@media (max-width: 968px) {
    .app-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .app-features {
        justify-content: center;
    }
    
    .app-buttons {
        justify-content: center;
    }
    
    .app-text h2 {
        font-size: 36px;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .phone-screen img {
        width: 100px;
        height: 100px;
    }
    
    .phone-app-name {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .app-section {
        padding: 60px 0;
    }
    
    .app-text h2 {
        font-size: 28px;
    }
    
    .app-text p {
        font-size: 15px;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .app-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
        border-radius: 30px;
    }
    
    .phone-screen {
        border-radius: 22px;
        padding: 50px 15px 15px;
    }
    
    .phone-screen img {
        width: 80px;
        height: 80px;
    }
    
    .phone-app-name {
        font-size: 18px;
    }
}

/* ===== Notícias ===== */
.noticias {
    background: var(--dark-lighter);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.news-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
}

.news-loading i {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--primary-light);
}

.news-loading p {
    font-size: 16px;
}

.news-card {
    background: var(--dark);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(15, 57, 114, 0.3);
}

.news-image {
    height: 180px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-image i {
    font-size: 50px;
    color: rgba(255, 255, 255, 0.3);
}

.news-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-source {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 10px;
}

.news-content h3 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--light);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.news-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gray);
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-light);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: var(--light);
    gap: 10px;
}

.news-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
}

.news-error i {
    font-size: 50px;
    margin-bottom: 15px;
    color: var(--secondary);
}

/* ===== Programação ===== */
.programacao {
    background: var(--dark-lighter);
}

.schedule-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.schedule-tab {
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: var(--light);
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.schedule-tab:hover {
    border-color: var(--primary);
    color: var(--primary-light);
}

.schedule-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}


.schedule-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: var(--gray);
}

.schedule-placeholder i {
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--primary);
    opacity: 0.5;
}

.schedule-placeholder p {
    font-size: 18px;
}

.schedule-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.schedule-grid.schedule-day {
    display: none;
}

.schedule-grid.schedule-day.active {
    display: flex;
}

.schedule-card {
    background: var(--dark);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.schedule-card:hover {
    transform: translateX(5px);
    border-color: var(--primary);
    background: var(--dark-lighter);
}

.schedule-card.now-playing {
    border-color: #e53935;
    border-left: 4px solid #e53935;
    background: linear-gradient(90deg, rgba(229, 57, 53, 0.15) 0%, var(--dark) 100%);
    position: relative;
    transform: translateX(0);
}

.live-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e53935;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: pulse-live 2s ease infinite;
}

.live-badge i {
    font-size: 8px;
    animation: blink 1s ease infinite;
}

@keyframes pulse-live {
    0%, 100% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.5); }
    50% { box-shadow: 0 0 0 10px rgba(229, 57, 53, 0); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.schedule-time {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    min-width: 120px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.schedule-info {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 20px;
}

.schedule-info h3 {
    font-size: 16px;
    margin-bottom: 0;
    color: var(--light);
    min-width: 200px;
}

.schedule-info p {
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 0;
    flex: 1;
    display: none; /* Ocultar descrição no formato lista */
}

.schedule-host {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--primary-light);
    font-weight: 600;
    margin-left: auto;
}

/* ===== Promoções ===== */
.promocoes {
    background: 
        radial-gradient(ellipse at 30% 0%, rgba(230, 165, 50, 0.15) 0%, transparent 50%),
        var(--dark);
}

.promo-coming-soon {
    text-align: center;
    padding: 100px 20px;
    background: var(--dark-lighter);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.promo-coming-soon i {
    font-size: 80px;
    color: var(--primary-light);
    margin-bottom: 30px;
    opacity: 0.7;
    animation: pulse 2s ease infinite;
}

.promo-coming-soon h3 {
    font-family: var(--font-display);
    font-size: 48px;
    letter-spacing: 3px;
    color: var(--light);
    margin-bottom: 15px;
}

.promo-coming-soon p {
    font-size: 18px;
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.promo-card {
    background: var(--dark-lighter);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.promo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.promo-card.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.promo-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    z-index: 1;
}

.promo-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-image i {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.3);
}

.promo-image.small {
    height: 120px;
}

.promo-image.small i {
    font-size: 50px;
}

.featured .promo-image {
    height: 280px;
    background: linear-gradient(135deg, var(--secondary), #f0b83a);
}

.featured .promo-image i {
    font-size: 120px;
}

.promo-content {
    padding: 25px;
}

.promo-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.promo-content p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.promo-deadline {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--accent);
    margin-bottom: 20px;
}

.btn-promo {
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
}

.btn-promo:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(15, 57, 114, 0.5);
}

.btn-promo.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
}

.btn-promo.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

/* ===== Fotos ===== */
.fotos {
    background: var(--dark-lighter);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: var(--light);
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary-light);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

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

.gallery-item {
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    z-index: 1;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        hsl(var(--hue, 215), 65%, 30%), 
        hsl(var(--hue, 215), 70%, 18%));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    text-align: center;
}

.gallery-placeholder i {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.5);
}

.gallery-placeholder span {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== Contato ===== */
.contato {
    background: 
        radial-gradient(ellipse at 70% 100%, rgba(15, 57, 114, 0.3) 0%, transparent 50%),
        var(--dark);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--dark-lighter);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-card i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.info-card h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.info-card p {
    color: var(--gray);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--dark-lighter);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.contato-form {
    background: var(--dark-lighter);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--light);
    font-family: var(--font-body);
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 57, 114, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
    border-radius: 12px;
    color: white;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(15, 57, 114, 0.5);
}

/* ===== Rodapé ===== */
.footer {
    background: var(--dark);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 1px;
    color: var(--light);
}

.footer-brand p {
    font-size: 13px;
    color: var(--gray);
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 42px;
    height: 42px;
    background: var(--dark-lighter);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 10px;
}

.footer-credits {
    font-size: 13px;
    color: var(--gray);
}

.footer-credits strong {
    color: var(--primary-light);
    font-weight: 700;
}

/* Rodapé Responsivo */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-brand {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* ===== Espaçador do Player ===== */
.player-spacer {
    height: var(--player-height);
}

/* ===== Player de Rádio ===== */
.radio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--player-height);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 1) 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1001;
    display: flex;
    align-items: center;
}

.player-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 0;
}

.player-album {
    position: relative;
    flex-shrink: 0;
}

.album-art {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    overflow: hidden;
}

.album-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equalizer {
    position: absolute;
    bottom: -5px;
    right: -5px;
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 20px;
    padding: 3px;
    background: var(--dark);
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.equalizer.active {
    opacity: 1;
}

.equalizer span {
    width: 3px;
    background: var(--primary-light);
    border-radius: 1px;
    animation: eq 0.5s ease infinite;
}

.equalizer span:nth-child(1) { height: 8px; animation-delay: 0.0s; }
.equalizer span:nth-child(2) { height: 12px; animation-delay: 0.1s; }
.equalizer span:nth-child(3) { height: 6px; animation-delay: 0.2s; }
.equalizer span:nth-child(4) { height: 14px; animation-delay: 0.3s; }
.equalizer span:nth-child(5) { height: 10px; animation-delay: 0.4s; }

@keyframes eq {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1); }
}

.player-details {
    min-width: 0;
}

.now-playing-label {
    font-size: 11px;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.track-name {
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.artist-name {
    font-size: 13px;
    color: var(--gray);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.control-btn {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.control-btn.play-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    font-size: 20px;
}

.control-btn.play-btn:hover {
    box-shadow: 0 0 30px rgba(15, 57, 114, 0.6);
}

.control-btn.play-btn.playing {
    background: linear-gradient(135deg, var(--primary-light), #2d7be5);
}

.player-volume {
    display: flex;
    align-items: center;
    gap: 12px;
}

.volume-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: var(--light);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.volume-btn:hover {
    color: var(--primary-light);
}

.volume-slider-container {
    width: 100px;
}

.volume-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.2);
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-light);
    cursor: pointer;
    transition: all 0.2s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(26, 95, 189, 0.6);
}

.player-extra {
    display: flex;
    align-items: center;
    gap: 8px;
}

.extra-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: var(--gray);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.extra-btn:hover {
    color: var(--light);
    background: rgba(255, 255, 255, 0.1);
}

.extra-btn.active {
    color: var(--primary-light);
}

.extra-btn.whatsapp-btn {
    color: #25D366;
    text-decoration: none;
}

.extra-btn.whatsapp-btn:hover {
    background: #25D366;
    color: white;
}

/* ===== Design Responsivo ===== */

/* Tablet */
@media (max-width: 1024px) {
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promo-card.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .promo-coming-soon {
        padding: 80px 20px;
    }
    
    .promo-coming-soon i {
        font-size: 60px;
    }
    
    .promo-coming-soon h3 {
        font-size: 36px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
    }
    
    .player-container {
        padding: 0 20px;
        gap: 20px;
    }
    
    .volume-slider-container {
        width: 80px;
    }
}

/* Tablet Pequeno */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
        --player-height: 80px;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-mobile {
        display: flex;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .schedule-grid {
        gap: 10px;
    }
    
    .promo-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-card.featured {
        grid-column: span 1;
    }
    
    .promo-coming-soon {
        padding: 60px 20px;
    }
    
    .promo-coming-soon i {
        font-size: 50px;
        margin-bottom: 20px;
    }
    
    .promo-coming-soon h3 {
        font-size: 28px;
    }
    
    .promo-coming-soon p {
        font-size: 16px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .player-volume {
        display: none;
    }
    
    .player-extra {
        display: none;
    }
    
    .player-controls .control-btn:not(.play-btn) {
        display: none;
    }
    
    .control-btn.play-btn {
        width: 55px;
        height: 55px;
    }
    
    .album-art {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .track-name {
        font-size: 14px;
    }
    
    .artist-name {
        font-size: 12px;
    }
}

/* Celular */
@media (max-width: 480px) {
    :root {
        --player-height: 70px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .logo-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
    
    .logo-text h1 {
        font-size: 22px;
    }
    
    .hero {
        padding-top: calc(var(--header-height) + 20px);
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 14px;
    }
    
    .hero-content h2 {
        font-size: 38px;
    }
    
    .hero-content p {
        font-size: 15px;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .sound-wave {
        display: none;
    }
    
    .section-title {
        font-size: 28px;
        flex-direction: column;
        gap: 10px;
    }
    
    .section-title i {
        font-size: 28px;
    }
    
    .schedule-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px;
    }
    
    .schedule-time {
        width: fit-content;
    }
    
    .schedule-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .schedule-info h3 {
        min-width: auto;
    }
    
    .schedule-host {
        margin-left: 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .contato-form {
        padding: 25px;
    }
    
    .social-links {
        flex-wrap: wrap;
    }
    
    .player-container {
        padding: 0 15px;
        gap: 15px;
    }
    
    .album-art {
        width: 45px;
        height: 45px;
        font-size: 18px;
        border-radius: 10px;
    }
    
    .control-btn.play-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .now-playing-label {
        font-size: 10px;
    }
    
    .track-name {
        font-size: 13px;
    }
    
    .artist-name {
        font-size: 11px;
    }
}

/* Animação do Botão Menu */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Classes de Animação ao Rolar */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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