/* --- ESTILOS DE LA SECCIÓN DE EQUIPO E INTERACTIVIDAD --- */
.equipo-section { background-color: #000; color: white; padding: 80px 20px; text-align: center; }
.equipo-title { font-size: 32px; font-weight: 700; margin-bottom: 50px; letter-spacing: 2px; }
.equipo-grid { display: grid; grid-template-columns: repeat(3, minmax(260px, 1fr)); gap: 35px; max-width: 1100px; margin: 0 auto; }

.equipo-card { 
    display: flex; 
    flex-direction: column; 
    background: #0f172a; 
    border-radius: 5px; 
    overflow: hidden; 
    transition: transform 0.3s ease;
    box-shadow: 2px 2px 10px var(--gold); 
}
.equipo-card:hover { transform: translateY(-5px); }

.image-wrapper { position: relative; width: 100%; height: 340px; overflow: hidden; }
.image-wrapper img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* Capa Deslizable de Skills (Oculta por defecto abajo) */
.skills-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.95); /* Fondo oscuro semi-transparente */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

/* Clase activa que se inyectará con JavaScript */
.skills-overlay.active { bottom: 0; }

.skills-overlay h4 { color: var(--gold); font-size: 18px; margin-bottom: 15px; font-weight: 700; letter-spacing: 1px; }
.skills-list { list-style: none; padding: 0; margin: 0; width: 100%; }
.skills-list li { color: #f8fafc; font-size: 14px; margin: 10px 0; display: flex; align-items: center; justify-content: center; gap: 8px; }
.skills-list i { color: var(--gold); font-size: 12px; }

/* Caja de Identificación */
.nombrePersona { display: flex; justify-content: center; align-items: center; padding: 15px 10px; border: 2px solid var(--gold); border-top: none; background-color: #000; }
.equipo-card p { font-size: 14px; font-weight: bold; color: white; letter-spacing: 1px; margin: 0; }

/* Menú de Iconos en la Esquina */
.social-icons { position: absolute; top: 15px; right: 15px; display: flex; flex-direction: column; gap: 12px; z-index: 5; }
.social-link { width: 36px; height: 36px; background-color: rgba(0, 0, 0, 0.7); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #ffffff; font-size: 1.1rem; text-decoration: none; transition: all 0.25s ease; cursor: pointer; }

/* Colores dinámicos */
.social-link.facebook:hover { background-color: #1877f2; color: white; border-color: #1877f2; transform: scale(1.1); }
.social-link.whatsapp:hover { background-color: #25d366; color: white; border-color: #25d366; transform: scale(1.1); }
.social-link.x-twitter:hover { background-color: #ffffff; color: #000000; border-color: #ffffff; transform: scale(1.1); }

/* Icono de Skill Activable */
.social-link.skill-btn {border-color: var(--gold); color: var(--gold); }
.social-link.skill-btn:hover { background-color: var(--gold); color: #000; transform: scale(1.1); }
.social-link.skill-btn.active { background-color: #ef4444; color: #fff; border-color: #ef4444; }