
.nuestros-equipos {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: left;
    overflow: hidden;
    position: relative;
    margin-top: 0px;
}


.nuestros-equipos::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(78, 55, 197, 0.7), rgba(50, 30, 150, 0.7)), url(../img/Fondo_1.jpg) center/cover fixed;
    z-index: -1;
}


.equipo-card {
    display: flex;
    align-items: center;
    justify-content: center; 
    max-width: 1200px;
    margin: 0 0 60px -30px;
    padding: 30px;
    height: 260px;
    border-radius: 0 130px 130px 0;
    background: #eee9f9;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 12px rgba(50, 30, 150, 0.7);
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.equipo-texto {
    flex: 1;
    text-align: justify; 
    margin-right: 40px;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center; 
}

.equipo-titulo {
    font-size: 28px;
    color: #4e37c6;
    margin-bottom: 10px;
    text-align: left; 
}

.equipo-texto p {
    font-size: 18px;
    color: #141414;
    line-height: 1.8;
}

.equipo-imagen {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.equipo-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.equipo-card-invertido {
    display: flex;
    align-items: center;
    justify-content: center; 
    max-width: 1200px;
    margin-left: auto;
    margin-right: -30px;
    margin-top: 120px;
    padding: 30px;
    height: 260px;
    border-radius: 130px 0 0 130px;
    background: #eee9f9;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 12px rgba(50, 30, 150, 0.7);
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.equipo-texto-invertido {
    flex: 1;
    text-align: justify; 
    margin-left: 40px;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center; 
}

.equipo-titulo-invertido {
    font-size: 28px;
    color: #4e37c6;
    margin-bottom: 10px;
    text-align: right; 
}

.equipo-texto-invertido p {
    font-size: 18px;
    color: #141414;
    line-height: 1.8;
}

.equipo-imagen-invertido {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.equipo-imagen-invertido img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equipo-card.show, .equipo-card-invertido.show {
    opacity: 1;
    transform: translateX(0);
}


@media (max-width: 768px) {
    .equipo-card, 
    .equipo-card-invertido {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        height: auto;
        border-radius: 20px;
        margin: 0 auto 40px auto;
    }

    .equipo-texto, 
    .equipo-texto-invertido {
        margin: 0;
        padding: 10px 20px;
        text-align: center;
    }

    .equipo-imagen, 
    .equipo-imagen-invertido {
        width: 180px;
        height: 180px;
        margin-bottom: 20px;
    }

    .equipo-titulo, 
    .equipo-titulo-invertido {
        font-size: 24px;
    }

    .equipo-texto p, 
    .equipo-texto-invertido p {
        font-size: 16px;
        line-height: 1.5;
    }
}
