/* ===== PÁGINA INDIVIDUAL DO LOCUTOR ===== */

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

/* Botão Voltar */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 153, 153, 0.3);
    margin-bottom: 2rem;
}

.back-button:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 153, 153, 0.4);
}

/* Header do Locutor */
.locutor-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(39, 153, 153, 0.3);
    color: white;
    position: relative;
    overflow: hidden;
}

.locutor-header::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;
}

.locutor-avatar-large {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid rgba(255, 255, 255, 0.3);
    margin: 0 auto 2rem;
    display: block;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.locutor-avatar-large:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Placeholder para foto ausente */
.no-photo-large {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border: 6px solid rgba(255, 255, 255, 0.3);
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

.locutor-name {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.locutor-bio {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
}

/* Conteúdo do Locutor */
.locutor-content {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
    border-top: 6px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

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

.locutor-content h2, .locutor-content h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem 0;
    font-weight: 700;
}

.locutor-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #2c3e50;
}

/* Informações de Contato */
.locutor-contact-info {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 2px solid #d4edda;
    text-align: center;
}

.locutor-contact-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #d4edda;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 153, 153, 0.2);
}

.contact-item .icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-item .label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item .value {
    color: #6c757d;
    font-size: 0.95rem;
}

.contact-item .value a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-item .value a:hover {
    text-decoration: underline;
}

/* Redes Sociais */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

/* Seção de Outros Locutores */
.other-locutors {
    margin-top: 4rem;
    padding: 3rem 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.other-locutors h3 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.other-locators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.other-locator-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
}

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

.other-locator-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(39, 153, 153, 0.25);
}

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

.other-locator-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    margin: 2rem auto 1rem;
    transition: all 0.3s ease;
}

.other-locator-card:hover .other-locator-avatar {
    border-color: #667eea;
    transform: scale(1.1);
}

/* Placeholder para foto pequena */
.no-photo-small {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 2rem;
    opacity: 0.6;
}

.other-locator-content {
    padding: 1.5rem;
}

.other-locator-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.other-locator-bio {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
    min-height: 3rem;
}

.other-locator-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    background: transparent;
}

.other-locator-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 153, 153, 0.3);
}

.other-locator-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.other-locator-link:hover::after {
    transform: translateX(3px);
}

/* Responsividade */
@media (max-width: 768px) {
    .locutor-detail-page {
        margin-top: 70px;
        padding: 1.5rem 0;
    }
    
    .locutor-header {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .locutor-name {
        font-size: 2.2rem;
    }
    
    .locutor-avatar-large,
    .no-photo-large {
        width: 140px;
        height: 140px;
    }
    
    .locutor-content {
        padding: 2rem 1.5rem;
        margin: 1.5rem 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .other-locators-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .other-locators h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .locutor-name {
        font-size: 1.8rem;
    }
    
    .locutor-avatar-large,
    .no-photo-large {
        width: 120px;
        height: 120px;
    }
    
    .locutor-content {
        padding: 1.5rem 1rem;
    }
    
    .other-locator-avatar {
        width: 100px;
        height: 100px;
    }
    
    .other-locator-name {
        font-size: 1.1rem;
    }
    
    .other-locator-bio {
        font-size: 0.9rem;
    }
}

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

.locutor-header { animation-delay: 0.1s; }
.locutor-content { animation-delay: 0.2s; }
.other-locator-card:nth-child(1) { animation-delay: 0.3s; }
.other-locator-card:nth-child(2) { animation-delay: 0.4s; }
.other-locator-card:nth-child(3) { animation-delay: 0.5s; }

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