/* Estilos para a página de Rádio */

/**
 * Essência Company - Estilos específicos para a página Rádio
 * Design alinhado com a página TV, mantendo consistência visual
 */

/* Estilos do cabeçalho da página */
.radio-header-section {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5)), url('../img/principal/marcas/background.jpeg') center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
}

.radio-header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.radio-header-text h1 {
    font-family: 'Fahkwang', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 30px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.radio-header-text h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, #d1ff00, transparent);
}

.radio-header-text p {
    font-family: 'Fahkwang', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.highlight {
    color: #d1ff00;
}

/* Equalizador animado no header */
.radio-equalizer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    gap: 8px;
    margin: 30px auto;
    position: relative;
    z-index: 2;
}

.equalizer-bar {
    width: 8px;
    background-color: #ff5e3a;
    border-radius: 4px;
    animation: equalize 1.5s ease-in-out infinite;
}

.equalizer-bar:nth-child(1) { height: 60%; animation-delay: 0.1s; }
.equalizer-bar:nth-child(2) { height: 30%; animation-delay: 0.3s; }
.equalizer-bar:nth-child(3) { height: 75%; animation-delay: 0.5s; }
.equalizer-bar:nth-child(4) { height: 45%; animation-delay: 0.2s; }
.equalizer-bar:nth-child(5) { height: 65%; animation-delay: 0.4s; }
.equalizer-bar:nth-child(6) { height: 40%; animation-delay: 0.6s; }
.equalizer-bar:nth-child(7) { height: 90%; animation-delay: 0.1s; }

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

/* Seção de Programas de Rádio */
.radio-programas-section {
    padding: 80px 0;
    background-color: #ececec;
    position: relative;
    overflow: hidden;
}

.radio-program-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radio-program-card {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: flex;
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.radio-program-visual {
    flex: 0 0 40%;
    background: linear-gradient(135deg, var(--primary-green), #1a2e0c);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo centralizado na parte inferior */
.radio-logo-center {
    margin-top: 30px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.renascenca-logo {
    width: 140px;
    height: auto;
    opacity: 0.9;
}

/* Vinil girando */
.vinyl-record {
    position: relative;
    width: 200px;
    height: 200px;
    margin-bottom: 10px;
    z-index: 2;
    margin-top: 20px;
}

.vinyl-disc {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, #000 0%, #333 80%);
    position: relative;
    animation: spinRecord 5s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vinyl-disc:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-radial-gradient(circle, transparent, transparent 15px, rgba(255,255,255,0.05) 15px, rgba(255,255,255,0.05) 16px);
    border-radius: 50%;
    z-index: 1;
}

.vinyl-label {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.vinyl-logo {
    width: 50px;
    height: auto;
}

.vinyl-arm {
    position: absolute;
    width: 120px;
    height: 15px;
    background-color: #d1d1d1;
    top: 30px;
    right: -30px;
    transform-origin: right center;
    transform: rotate(20deg);
    border-radius: 10px 0 0 10px;
    z-index: 3;
}

.vinyl-arm:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #a0a0a0;
    right: -5px;
    top: -2.5px;
}

.vinyl-arm:after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #606060;
    left: 15px;
    top: 3.5px;
}

@keyframes spinRecord {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Botão de ouvir na direita */
.radio-listen-button {
    display: block;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
    margin-top: 20px;
    margin-left: auto;
    max-width: fit-content;
    font-family: 'Fahkwang', Arial, sans-serif;
}

.radio-listen-button i {
    margin-right: 8px;
}

.radio-listen-button:hover {
    background-color: #3a6a20;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(45, 80, 22, 0.4);
    color: white;
    text-decoration: none;
}

.audio-wave:nth-child(1) { animation-delay: 0.1s; }
.audio-wave:nth-child(2) { animation-delay: 0.3s; }
.audio-wave:nth-child(3) { animation-delay: 0.2s; }

@keyframes audioWave {
    0%, 100% { height: 10px; }
    50% { height: 40px; }
}

/* Conteúdo do card de programa */
.radio-program-content {
    flex: 0 0 60%;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.radio-program-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    display: flex;
    align-items: center;
}

.radio-tag {
    font-size: 0.9rem;
    padding: 3px 10px;
    background-color: #e83e8c;
    color: white;
    border-radius: 20px;
    margin-left: 15px;
    font-weight: 500;
}

.radio-station {
    margin-bottom: 20px;
}

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

.radio-program-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

/* Conteúdo simplificado */
.radio-program-content {
    flex: 0 0 60%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Fahkwang', Arial, sans-serif;
}

.radio-program-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    font-family: 'Fahkwang', Arial, sans-serif;
}

.radio-tag {
    font-size: 0.9rem;
    padding: 3px 10px;
    background-color: var(--primary-green);
    color: white;
    border-radius: 20px;
    margin-left: 15px;
    font-weight: 500;
    font-family: 'Fahkwang', Arial, sans-serif;
}

.radio-program-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
    font-family: 'Fahkwang', Arial, sans-serif;
}

/* Microfone decorativo */
.decorative-mic {
    position: absolute;
    right: -50px;
    bottom: -30px;
    width: 150px;
    height: 300px;
    z-index: 1;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.mic-stand {
    position: absolute;
    bottom: 0;
    left: 70px;
    width: 10px;
    height: 200px;
    background-color: #333;
}

.mic-head {
    position: absolute;
    top: 0;
    left: 45px;
    width: 60px;
    height: 100px;
    background-color: #333;
    border-radius: 30px;
}

.mic-base {
    position: absolute;
    bottom: 0;
    left: 35px;
    width: 80px;
    height: 20px;
    background-color: #333;
    border-radius: 10px;
}

/* Responsividade */
@media screen and (max-width: 991px) {
    .radio-program-card {
        flex-direction: column;
        max-width: 600px;
    }
    
    .radio-program-visual,
    .radio-program-content {
        flex: 0 0 100%;
    }
    
    .radio-program-visual {
        padding: 30px;
    }
    
    .vinyl-record {
        width: 150px;
        height: 150px;
        margin-bottom: 20px;
    }
    
    .vinyl-disc {
        width: 150px;
        height: 150px;
    }
    
    .decorative-mic {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .radio-title {
        font-size: 2.5rem;
    }
    
    .radio-subtitle {
        font-size: 1.2rem;
    }
    
    .radio-program-visual {
        padding: 20px;
    }
    
    .vinyl-record {
        width: 120px;
        height: 120px;
    }
    
    .vinyl-disc {
        width: 120px;
        height: 120px;
    }
    
    .radio-program-title {
        font-size: 1.8rem;
    }
    
    .radio-program-description {
        font-size: 1rem;
    }
    
    .radio-listen-central-button {
        padding: 10px 20px;
        font-size: 1rem;
    }
}
