#belt-team-section {
    width: 100%;
    padding: 60px 0;
    background: #fff;
    font-family: 'Avenir Next', sans-serif;
    overflow: hidden;
}

.belt-team-container {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Alineación Superior Estricta */
    gap: 60px; /* Separación horizontal entre visuales y texto */
    max-width: 1400px;
    margin: 0 auto;
}

/* --- COLUMNA IZQUIERDA (ANCHO FIJO 498px) --- */
.belt-visual-column {
    display: flex;
    flex-direction: column;
    width: 498px;
    flex-shrink: 0;
}

/* Lienzo Relativo: Aloja Grande + Miniaturas */
/* Altura = 852 (Grande) + 30 (Gap) + 181 (Miniatura) = 1063px */
.belt-visual-stage {
    position: relative;
    width: 498px;
    height: 1063px; 
}

/* Estilo Base Imágenes */
.belt-team-photo {
    position: absolute;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* Animación fluida */
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* --- COORDENADAS EXACTAS (LOS CUADROS) --- */

/* CUADRO 1: IMAGEN PRINCIPAL */
.belt-pos-0 {
    width: 498px;
    height: 852px;
    top: 0;
    left: 0;
    z-index: 20;
    opacity: 1;
    filter: grayscale(0%);
    cursor: default;
}

/* CUADRO 2: FILA DE MINIATURAS (Abajo) */
/* Gap vertical desde la imagen grande = 30px */

/* Miniatura 1 (Izquierda) */
.belt-pos-1 {
    width: 162px;
    height: 181px;
    top: 882px; /* 852 + 30 */
    left: 0;
    z-index: 10;
    opacity: 0.5;
    filter: grayscale(100%);
    cursor: pointer;
}

/* Miniatura 2 (Centro) */
.belt-pos-2 {
    width: 162px;
    height: 181px;
    top: 882px;
    left: 168px; /* 162 + 6px gap */
    z-index: 10;
    opacity: 0.5;
    filter: grayscale(100%);
    cursor: pointer;
}

/* Miniatura 3 (Derecha) */
.belt-pos-3 {
    width: 162px;
    height: 181px;
    top: 882px;
    left: 336px; /* 168 + 162 + 6px gap */
    z-index: 10;
    opacity: 0.5;
    filter: grayscale(100%);
    cursor: pointer;
}

/* Hover Miniaturas */
.belt-pos-1:hover, .belt-pos-2:hover, .belt-pos-3:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* CUADRO 3: FLECHAS (Abajo de todo) */
.belt-nav-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px; /* Separación de las miniaturas */
    width: 100%;
}

.belt-nav-btn {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 1px solid #7E7E7E;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.belt-nav-btn:hover {
    background-color: #f5f5f5;
}

/* --- COLUMNA DERECHA (TEXTOS) --- */
.belt-info-column {
    flex: 1;
    max-width: 500px;
    padding-top: 0; /* Alineado al tope (Y=0) con la imagen grande */
    margin-top: -5px; /* Ajuste óptico de altura de línea */
}

.belt-text-wrapper {
    transition: opacity 0.3s ease;
}

.belt-header-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: baseline;
    margin-bottom: 5px;
    line-height: 1;
}

.belt-name {
    font-family: 'Avenir Next', sans-serif;
    font-weight: 400;
    font-size: min(2.604vw, 50px);
    color: #353535;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0;
}

.belt-lastname {
    font-family: 'Avenir Next Ultralight', sans-serif;
    font-weight: 275;
    font-size: min(2.604vw, 50px);
    color: #353535;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0;
}

.belt-profession {
    font-family: 'Utopia Std', serif;
    font-style: italic;
    font-size: min(1.458vw, 28px);
    color: #C5B9AC;
    margin: 20px 0 30px 0;
}

.belt-description {
    font-family: 'Avenir Next', sans-serif;
    font-weight: 400;
    font-size: min(1.146vw, 22px);
    color: #7E7E7E;
    line-height: 1.6;
}