/* ===== PÁGINA DE LOCUTORES ===== */

.locutors-page {
    margin-top: 80px;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: calc(100vh - 80px);
}

/* Header da Seção */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.section-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(39, 153, 153, 0.1);
    position: relative;
}

.section-header h1::after {
    content: '🎤';
    position: absolute;
    top: -10px;
    right: -20px;
    font-size: 2rem;
    opacity: 0.6;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.section-header p {
    font-size: 1.3rem;
    color: #6c757d;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid de Locutores */
.locutors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Card do Locutor */
.locutor-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.locutor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #667eea 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.locutor-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(39, 153, 153, 0.25);
    border-color: var(--primary-color);
}

.locutor-card:hover::before {
    transform: scaleX(1);
}

/* Foto do Locutor */
.locutor-photo {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.locutor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.locutor-card:hover .locutor-photo img {
    transform: scale(1.1);
}

/* Overlay na Foto */
.locutor-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.locutor-card:hover .locutor-photo::after {
    opacity: 1;
}

/* Conteúdo do Card */
.locutor-content {
    padding: 2rem;
    text-align: center;
}

.locutor-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.locutor-content p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 3rem;
}

/* Botão Ver Perfil */
.locutor-content .btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 153, 153, 0.3);
    position: relative;
    overflow: hidden;
}

.locutor-content .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.locutor-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 153, 153, 0.4);
    color: white;
}

.locutor-content .btn:hover::before {
    left: 100%;
}

/* Estado Sem Conteúdo */
.no-content {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.no-content p {
    font-size: 1.2rem;
    color: #6c757d;
    margin: 0;
}

/* Breadcrumb */
.breadcrumb {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-dark);
}

.breadcrumb .separator {
    color: #6c757d;
    margin: 0 0.5rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .locutors-page {
        margin-top: 70px;
        padding: 2rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
        padding: 1.5rem 0;
    }
    
    .section-header h1 {
        font-size: 2.8rem;
    }
    
    .section-header h1::after {
        font-size: 1.5rem;
        top: -5px;
        right: -15px;
    }
    
    .section-header p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .locutors-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .locutor-card {
        border-radius: 16px;
    }
    
    .locutor-photo {
        height: 240px;
    }
    
    .locutor-content {
        padding: 1.5rem;
    }
    
    .locutor-content h3 {
        font-size: 1.3rem;
    }
    
    .breadcrumb {
        margin: 0 1rem 1.5rem 1rem;
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 480px) {
    .section-header h1 {
        font-size: 2.2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .locutors-grid {
        gap: 1.5rem;
    }
    
    .locutor-photo {
        height: 200px;
    }
    
    .locutor-content {
        padding: 1.25rem;
    }
    
    .locutor-content h3 {
        font-size: 1.2rem;
    }
    
    .locutor-content .btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .cta-section {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .cta-section h3 {
        font-size: 1.6rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .cta-section .btn {
        padding: 0.875rem 2rem;
    }
    
    .no-content {
        margin: 0 1rem;
        padding: 3rem 1.5rem;
    }
    
    .no-content-icon {
        font-size: 3rem;
    }
    
    .no-content h3 {
        font-size: 1.3rem;
    }
    
    .no-content p {
        font-size: 1rem;
    }
}

/* Animações de Entrada */
.locutor-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.locutor-card:nth-child(1) { animation-delay: 0.1s; }
.locutor-card:nth-child(2) { animation-delay: 0.2s; }
.locutor-card:nth-child(3) { animation-delay: 0.3s; }
.locutor-card:nth-child(4) { animation-delay: 0.4s; }
.locutor-card:nth-child(5) { animation-delay: 0.5s; }
.locutor-card:nth-child(6) { animation-delay: 0.6s; }

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

/* Efeitos Especiais */
.locutor-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(39, 153, 153, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.locutor-card:hover::after {
    opacity: 1;
}

/* Melhorias nos Cards */
.locutor-card .locutor-content h3::before {
    content: '🎤';
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.locutor-content .btn::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.locutor-content .btn:hover::after {
    transform: translateX(3px);
}

/* Foto Padrão quando não há foto */
.no-photo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    color: #6c757d;
}

.no-photo span {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    opacity: 0.6;
}

.no-photo small {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Descrição e Bio */
.locutor-description {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.locutor-bio {
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Ações do Locutor */
.locutor-actions {
    margin-top: 1rem;
}

/* Seção Footer */
.section-footer {
    margin-top: 4rem;
    text-align: center;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    color: white;
    box-shadow: 0 15px 35px rgba(39, 153, 153, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.cta-section .btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Estado Sem Conteúdo Melhorado */
.no-content {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px dashed #dee2e6;
}

.no-content-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.6;
    animation: float 3s ease-in-out infinite;
}

.no-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.no-content p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
