/* Estilos específicos para página Equipo Especializado */
.logo img {
    height: 50px;
    width: auto;
    margin-right: 10px;
}

.equipo-main {
    margin-top: 80px;
}

.equipo-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 51, 102, 0.4), rgba(0, 180, 216, 0.3)),
                url('../../img/equipo/equipo.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.equipo-hero .hero-content h1 {
    font-size: 3.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 1rem;
    animation: fadeIn 1s ease-in;
}

.equipo-hero .hero-content p {
    font-size: 1.8rem;
    font-weight: 300;
    animation: fadeIn 1.5s ease-in;
}

.equipo-detail {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.detail-container {
    max-width: 1200px;
    margin: 0 auto;
}

.equipo-overview {
    text-align: center;
    margin-bottom: 4rem;
}

.equipo-overview h2 {
    color: #003366;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.equipo-overview .lead-text {
    font-size: 1.2rem;
    color: #003366;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.equipo-overview p {
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.equipo-members {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 3rem;
}

.equipo-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.equipo-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.member-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.equipo-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h3 {
    color: #003366;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.member-info p {
    color: #4a5568;
    line-height: 1.6;
}

footer {
    background: #003366;
    color: white;
    padding: 2rem;
    text-align: center;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #00b4d8;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .equipo-hero {
        height: 50vh;
    }
    
    .equipo-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .equipo-hero .hero-content p {
        font-size: 1.3rem;
    }
    
    .equipo-members {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
    }
    
    .footer-links a {
        margin: 5px 0;
    }
}