/* ==========================================================================
   Sección "Nuestro Equipo" — Diamante Real
   ========================================================================== */

.equipo-luxury-section {
    padding: 60px 0;
    background-color: var(--light-bg, #fcfcfd);
}
@media (min-width: 768px) {
    .equipo-luxury-section { padding: 120px 0; }
}

.equipo-card {
    background: var(--white, #fff);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding-bottom: 24px;
    height: 100%;

    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.equipo-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.equipo-card:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.equipo-photo-wrap {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: var(--dark-pure, #0f0f11);
}
.equipo-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
    filter: grayscale(35%);
}
.equipo-card:hover .equipo-photo-wrap img {
    transform: scale(1.08);
    filter: grayscale(0%);
}
.equipo-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-oswald, sans-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold, #bfa67a);
}

.equipo-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 15, 17, 0.85) 0%, rgba(15, 15, 17, 0) 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 16px;
}
.equipo-card:hover .equipo-photo-overlay { opacity: 1; }
.equipo-photo-overlay span {
    color: var(--gold, #bfa67a);
    font-family: var(--font-oswald, sans-serif);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--gold, #bfa67a);
    padding: 6px 14px;
    border-radius: 20px;
}

.equipo-nombre {
    font-family: var(--font-oswald, sans-serif);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-dark, #1c1c1f);
    margin-top: 20px;
    margin-bottom: 4px;
}
.equipo-especialidad {
    color: var(--gold, #bfa67a);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}
.equipo-descripcion {
    font-size: 0.82rem;
    color: var(--text-muted, #6e6e73);
    line-height: 1.6;
    font-weight: 300;
    padding: 0 20px;
}
