/* Estilos específicos para la página Staff */

.conocenos-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/conocenos-bg.jpg') no-repeat center center/cover;
}

.historia-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.historia-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.historia-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.historia-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.equipo-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.equipo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.miembro-card {
    background-color: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.miembro-card:hover {
    transform: translateY(-10px);
}

.miembro-img {
    height: 300px;
    overflow: hidden;
}

.miembro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.miembro-card:hover .miembro-img img {
    transform: scale(1.05);
}

.miembro-info {
    padding: 25px;
    text-align: center;
}

.miembro-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.miembro-info p {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 15px;
}

.miembro-bio {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.miembro-social {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
}

.miembro-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.05);
    color: var(--dark-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.miembro-social a:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

.valores-section {
    padding: 100px 0;
    background-color: var(--dark-color);
    color: var(--light-color);
}

.valores-section .section-title {
    color: var(--light-color);
}

.valores-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.valor-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.valor-icon {
    flex: 0 0 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.valor-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.valor-content p {
    opacity: 0.8;
    line-height: 1.6;
}

.clientes-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 1.8rem;
    margin: 40px auto;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 80, 80, 0.3);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(255, 80, 80, 0.4);
}

/* Media Queries */
@media (max-width: 992px) {
    .historia-container {
        grid-template-columns: 1fr;
    }
    
    .equipo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .valores-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .equipo-grid {
        grid-template-columns: 1fr;
    }
} 