.equipo {
    background: none;
    text-align: left; 
    position: relative;
}

.fade-effect {
    animation: fade 0.5s ease-in-out;
}

@keyframes fade {
    0% {
        opacity: 0.25;
    }
    50% {
        opacity: 0.75;
    }
    100% {
        opacity: 1;
    }
}

.boton-proceso {
    display: flex;
    justify-content: flex-start;
    position: absolute;
    left: 40%;
    top: -7%; 
}

.btn-proceso {
    background: #59BBAA;
    color: white;
    font-size: 28px;
    font-family: 'Nexa', sans-serif;
    font-weight: 400;
    padding: 14px 40px;
    border: none;
    border-radius: 48px;
    cursor: pointer;
    transition: background 0.3s;
}

.equipo-contenedor {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    width: 100%;
    padding: 0px 7%;
}

.equipo-imagen {
    width: 45%;
    margin-top: 1%;
    height:auto ;
    position: relative;
    z-index: 80;
    margin-right: 0; 
}

.equipo-imagen img {
    width: 100%;
    height: 100%;
    max-width: 400px;
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.2));
    display: block;
}

.equipo-texto {
    width: 30%;
    text-align: left; 
    margin-right: 10%; 
    z-index: 2;
}

.equipo-texto h2 {
    font-size: 32px;
    font-family: 'Nexa', sans-serif;
    color: #01465B;
    text-align: left; 
}

.equipo-texto p {
    font-family: 'Nexa', sans-serif;
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    margin: 10px 0;
}

.btn-mas {
    background: #01719D;
    color: white;
    font-size: 18px;
    font-family: 'Nexa', sans-serif;
    padding: 15px 40px;
    border: none;
    border: 1px solid #01719D;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s;
}

/* Círculos */
.circulo {
    position: absolute;
    border-radius: 50%;
    z-index: 1; 
}
/* Círculo superior izquierdo */
.circulo-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #59BBAA, #01719D);
    top: 22%;
    left: 8%;
}

/* Círculo superior derecho */
.circulo-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #FCC450, #E84757);
    top: 30%;
    left: 20%;
}

/* Círculo inferior izquierdo naranja*/
.circulo-3 {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg,#FCC450, #E84757);
    bottom: 18%;
    left: 9%;
    z-index: 8;
}

/* Círculo inferior izquierdo azul */
.circulo-4 {
    position: absolute;
    width: 260px;
    height: 260px;
    background: linear-gradient(135deg, #59BBAA, #01719D);
    bottom: -6%;
    left:6%;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

.fondo-formaEquipo {
    position: absolute;
    left:0%;
    bottom: 0;
    width: 350px; 
    z-index: 0; 
}

.fondo-formaEquipo img {
    width: 100%;
    height: auto;
}

@media (max-width: 1300px) {
    .equipo-contenedor {
        padding-top: 0%;
    }
    .equipo-imagen {
        width: 70%;
        margin-right: 0;
        max-width: auto;
    }
    .equipo-texto {
        width:60%;
        text-align: start;
    }
    .equipo-texto h2 {
        font-size: 28px;
        text-align: end;
    }
    .equipo-texto p {
        font-size: 16px;
        text-align: justify;
    }
    .circulo-1 {
        width: 50px;
        height: 50px;
        top: 45%;
        left: 8%;
    }
    /* Círculo superior derecho */
    .circulo-2 {
        width: 130px;
        height: 130px;
        top: 30%;
        left: 26%;
    }
    
    /* Círculo inferior izquierdo naranja*/
    .circulo-3 {
        width: 40px;
        height:40px;
        bottom: 14%;
        left: 10%;
    }
    
    /* Círculo inferior izquierdo azul */
    .circulo-4 {
        width: 180px;
        height: 180px;
        bottom: -4%;
        left:6%;
    }
    
    .Equipo {
        left:0%;
        bottom: 0;
        width: 240px; 
        z-index: 0; 
    }
    .boton-proceso {
        left: 38%;
        top: -6%; 
    }
    .btn-proceso {
        font-size: 22px;
    }
    .btn-mas {
        font-size: 15px;
        padding:8px 40px;
        margin-left: 0em;
    }
}

@media (max-width: 1024px) {
    .equipo-contenedor {
        flex-direction: row;
    }
    .equipo-imagen {
        width: 100%;
        margin-right: 0;
    }
    .equipo-texto {
        width: 100%;
        margin-right: 0;
    }
    .circulo-1 {
        width: 50px;
        height: 50px;
        top: 35%;
        left: 9%;
    }
    /* Círculo superior derecho */
    .circulo-2 {
        width: 150px;
        height: 150px;
        top: 30%;
        left: 30%;
    }
    
    /* Círculo inferior izquierdo naranja*/
    .circulo-3 {
        width: 40px;
        height: 40px;
        bottom: 18%;
        left: 10%;
    }
    
    /* Círculo inferior izquierdo azul */
    .circulo-4 {
        width: 230px;
        height: 230px;
        bottom: -6%;
        left:6%;
    }
    
    .fondo-formaEquipo {
        width: 260px; 
        z-index: 0; 
    }
    .boton-proceso {
        left: 32%;
        top: -8%;
    }    
}

@media (max-width: 768px) {
    .equipo-contenedor {
        flex-direction: row;
    }
    .equipo-imagen {
        width: 100%;
        margin-left: 3%;

        max-width: auto;
    }
    .equipo-texto {
        width: 100%;
        margin-left: 5%; 
    }
    .equipo-texto h2 {
        font-size: 22px;
    }
    .equipo-texto p {
        font-size: 15px;
    }
    .circulo-1 {
        width: 45px;
        height: 45px;
        top: 28%;
        left: 10%;
    }
    /* Círculo superior derecho */
    .circulo-2 {
        width: 120px;
        height: 120px;
        top: 30%;
        left: 30%;
    }
    
    /* Círculo inferior izquierdo naranja*/
    .circulo-3 {
        width: 40px;
        height:40px;
        bottom: 16%;
        left: 14%;
        z-index: 20;
    }
    
    /* Círculo inferior izquierdo azul */
    .circulo-4 {
        width: 180px;
        height: 180px;
        bottom: -1%;
        left:7%;
    }
    
    .fondo-formaEquipo {
        left:0%;
        bottom: 0;
        width: 220px; 
        z-index: -1; 
    }
    .boton-proceso {
        left:31%;
        top: -7%;
        
    }
    .btn-proceso {
        font-size: 18px;
        padding: 10px 26px;
    }
    .btn-mas {
        font-size: 15px;
        padding:8px 40px;
    }
}

@media screen and (max-width: 540px) and (orientation: portrait) {
    .equipo{
        background: #d9d9d9;
    }
    .equipo-contenedor {
        flex-direction: column-reverse;
        padding-top: 15%;
    }
    .equipo-imagen {
        width: 70%;
        margin-right: 0;
        margin-top: 10%;
        max-width: auto;
    }
    .equipo-texto {
        align-items: center;
        width: 100%;
        text-align: start;
    }
    .equipo-texto h2 {
        text-align: center;
        font-size: 23px;
    }
    .equipo-texto p {
        font-size: 15px;
    }
    .circulo-1 {
        width: 40px;
        height: 40px;
        top: 70%;
        left: 8%;
    }
    /* Círculo superior derecho */
    .circulo-2 {
        width: 90px;
        height: 90px;
        top: 60%;
        left: 54%;
    }
    
    /* Círculo inferior izquierdo naranja*/
    .circulo-3 {
        width: 30px;
        height:30px;
        bottom: 9%;
        left: 25%;
    }
    
    /* Círculo inferior izquierdo azul */
    .circulo-4 {
        width: 140px;
        height: 140px;
        bottom: -1%;
        left:18%;
    }
    
    .fondo-formaEquipo {
        left:0%;
        bottom: 0;
        width: 180px; 
        z-index: 0; 
    }
    .boton-proceso {
        left:20%;
        top: -3%; 
    }
    .btn-proceso {
        font-size: 17px;
        padding: 10px 26px;
    }
    .btn-mas {
        font-size: 13px;
        padding:8px 40px; 
    }
}