/* --- Reset y variables --- */
:root {
    --azul-oscuro: #2c3e50;
    --azul-claro: #2c3e50;
    --verde: #2aa44f;
    --gris-claro: #f5f7fb;
    --sombra: 0 10px 30px rgba(15, 20, 40, 0.08);
    --radio: 22px;
    --maxanch: 1100px;
}



.seccion-equipo {
    max-width: var(--maxanch);
    margin: 40px auto 120px;
    padding: 40px 20px;
    position: relative;
}


.fondo-burbujas {
    position: absolute;
    left: 0;
    right: 0;
    top: 50px;
    bottom: -20px;
    z-index: 0;
    background:
        radial-gradient(circle at 10% 30%, rgba(230, 236, 240, 0.6) 0 120px, transparent 121px),
        radial-gradient(circle at 80% 70%, rgba(230, 236, 240, 0.5) 0 180px, transparent 181px);
    pointer-events: none;
    filter: blur(0px);
}

.pestañas-area {
    position: relative;
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    z-index: 2;
}

.pestaña {
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    color: var(--azul-oscuro);
    background: transparent;
    font-size: 18px;
}


.pestañas-area::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 420px;
    height: 6px;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--azul-oscuro) 0 50%, var(--verde) 50% 100%);
    z-index: 1;
}

.pestañas-area::before {

    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -22px;
    width: 36px;
    height: 18px;
    background: transparent;
    z-index: 2;
}

.tarjeta-principal {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 36px 48px 36px 140px;
    box-shadow: var(--sombra);
    z-index: 2;
    overflow: visible;
}

.foto-redonda {
    position: absolute;
    left: -60px;
    top: -48px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(180deg, #fff, #f1f7fb);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(15, 20, 40, 0.12);
    border: 10px solid rgba(255, 255, 255, 0.95);
    z-index: 3;
    overflow: hidden;
}

.foto-redonda img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cargo-peque {
    color: var(--azul-claro);
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
}

.nombre-grande {
    color: var(--azul-oscuro);
    font-weight: 800;
    font-size: 34px;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.titulo {
    color: #2b2b2b;
    font-weight: 700;
    margin-bottom: 18px;
    font-size: 16px;
}

.cita {
    color: var(--azul-claro);
    font-weight: 700;
    font-size: 18px;
    margin: 10px 0 18px;
    display: block;
    line-height: 1.2;
}

.descripcion {
    color: #546070;
    line-height: 1.6;
    font-size: 14px;
    max-width: 760px;
}

.fila-secundaria {
    display: flex;
    gap: 28px;
    margin-top: 46px;
    align-items: flex-start;
    z-index: 2;
}

.tarjeta-pequena {
    background: #fff;
    border-radius: 18px;
    padding: 28px 20px 20px 20px;
    width: 50%;
    box-shadow: var(--sombra);
    position: relative;
    overflow: visible;
}

.foto-peq {
    position: absolute;
    left: -40px;
    top: -36px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 8px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 25px rgba(15, 20, 40, 0.09);
    overflow: hidden;
    background: #f7f9fb;
}

.tarjeta-pequena h4 {
    margin-top: 60px;
    margin-bottom: 6px;
    color: var(--azul-oscuro);
    font-size: 20px;
    font-weight: 800;
}

.tarjeta-pequena p {
    color: #6b7380;
    font-size: 14px;
    line-height: 1.5;
}


@media (max-width:900px) {
    .tarjeta-principal {
        padding: 28px 20px 28px 120px;
    }

    .foto-redonda {
        left: 12px;
        top: -70px;
        transform: translateY(0);
        width: 120px;
        height: 120px;
    }

    .fila-secundaria {
        flex-direction: column;
    }

    .tarjeta-pequena {
        width: 100%;
    }

    .pestañas-area::after {
        width: 320px;
    }
}

@media (max-width:480px) {
    .seccion-equipo {
        padding: 18px 12px;
        margin-top: 10px;
    }

    .tarjeta-principal {
        padding: 22px 14px 24px 110px;
        border-radius: 14px;
    }

    .foto-redonda {
        left: 8px;
        top: -56px;
        width: 96px;
        height: 96px;
        border-width: 8px;
    }

    .nombre-grande {
        font-size: 22px;
    }

    .pestaña {
        font-size: 15px;
    }
}