
.seccion-2{
  
   
    display: flex;
    justify-content: center;
    align-items: center;
      background-color: #F5F5F5;
}

.seccion-2-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    padding: 0px 160px 0px 160px;
    position: relative;
    gap: 50px;
}

.seccion-2-content{
    display: flex;
    flex-direction: column;
    gap: 30px;
    
}

.seccion-2-container img {
    max-width: 55%;
}



.seccion-2 a{
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    width: 180px;
    /* height: 52px; */
    padding: 10px 0px 10px 0px;
    flex-shrink: 0;
    text-align: center;
    font-size: 20px;
   
}

.seccion-2-title{
    color: #0A0080;
    font-family: 'ProximaNova', sans-serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: 105%; /* 59.545px */
    width: 658px;
    margin-bottom: 50px;
}

.seccion-2-subtitle{
     color: #1A1A1A;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 112%; /* 40.32px */
    margin-bottom: 10px;
    width: 515px;
}

@media (max-width: 1169px) {
    .seccion-2-container{
        flex-direction: column;
        align-items: center;
        gap: 0px;
    }
    
    .seccion-2-title {
        width: 100%;
        margin-bottom: 0px;
    }

}

@media (max-width: 800px) {
    .seccion-2-container{
       padding: 0px 40px 0px 99px;
    }
    .seccion-2-container img{
        width: 85%;
    }
    
    .seccion-2-content{
        width: 100%;
    }
    
    .seccion-2-subtitle{
        width: 100%;
    }
}

@media (max-width: 700px) {
    .seccion-2-container{
       padding: 60px 10px 0px 19px;
    }
    
    .seccion-2-title {
        font-size: 28px;
        margin-bottom: 0px;
    }
    
    .seccion-2-subtitle{
        font-size: 20px;
    }
    
    .seccion-2-container img{
        max-width: 100%;
    }
    

}


