:root{
    --color-primario:#009fc2;
}
html,body{
    overflow-x: hidden;
}
.open-sans{
    font-family: 'Open Sans Condensed', sans-serif;
}
.open-sans-n{
    font-family: 'Open Sans', sans-serif;
}
/*Padding de 24px para izquierda y derecha reutilizable en móvil*/
@media (max-width: 1024px) {
    .pl-pr-sm{
        padding-left:24px !important;
        padding-right: 24px !important;
    }
}

*{
    margin: 0;
    padding: 0;
}

.custom_button-1{
    width: 167px;
    height: 32px;
    background-color: var(--color-primario);
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 500;
}
.custom_button-1:hover, .custom_button-2:hover{
    color: white;
}

.custom_button-2{
    width: 229px;
    height: 32px;
    background-color: var(--color-primario);
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 500;
}
/***************Section 1*************/
.section1{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
}
.section1 h1{
    font-weight: 700;
    font-size: 70px;
    line-height: 74px;
}
.section1 h2{
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
}


/*section 2*/
.section2{
    padding: 60px 0;
    background-color: #2E2A2B;
}

.invest_icon_list {
    border: none;  
    outline: none; 
    text-decoration: none; 
}

.invest_icon_list {
    transition: color 0.3s ease;
}

.invest_icon_list:hover {
    color: var(--color-primario) !important;
}

/*section 4*/
.section4{
    padding: 100px 0;
    background-color: #423A31;
}
.section4 h6{
    max-width: 540px;
    font-size: 28px;
    line-height: 37px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 0px;
    text-transform: none;
}
.section4_div1, .section4_div2{
    width: 50%;
}
.section4_div1 h2{
    font-weight: 700;
    font-size: 45px;
    line-height: 48px;
}
.section4_div1 p{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.button_icon {
    background-color: #00000000;
    border: none;
    color: white;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    max-width: 120px;
}
.button_icon:hover{
    color: var(--color-primario);
}

/*other sections*/
.section{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.section{
    padding: 145px 0;
}
.section h2{
    font-size: 45px;
    line-height: 48px;
    font-weight: 700;
}
.section h3{
    font-size: 36px;
    line-height: 40px;
    font-weight: 600;
}
.section p{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    max-width: 591px;
}

.section-link1 a{
    color: var(--color-primario);
    text-decoration: none;
    font-size: 28px;
    line-height: 37px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 0px;
    text-transform: none;
}
.section-link2 a{
    color: white;
    text-decoration: none;
    font-size: 28px !important;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.2px;
    text-transform: none;
    line-height: 31px;
}
.section-link2 a:hover{
    color: var(--color-primario);
}


/*modal*/
.modal-content {
    max-height: 90vh; /* Limita la altura máxima del modal */
    overflow: hidden; /* Evita barras de desplazamiento dentro del modal */
}

.modal-body {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Asegura que la imagen no genere scroll */
    max-height: 80vh; /* Controla la altura del modal */
}

.modal-body img {
    max-width: 100%;
    max-height: 75vh; /* Ajusta la imagen sin generar overflow */
    height: auto;
    object-fit: contain;
}

body.modal-open {
    padding-right: 0px !important;
}


@media only screen and (max-width:992px){
    .section h2, .section h6, .section h3, .section p{
        color: white !important;
    }
    .section4_div1, .section4_div2{
        width: 100%;
    }
}
@media only screen and (max-width:768px){
    /*Section 1*/
    .section1, .section{
        padding: 0 0 60px 0;
        background-color: #2E2A2B;
        background-image: none !important;
    }
    .section1-bg {
        width: 100%;
        object-fit: cover;
    }


    /*section 2*/
    .section2{
        padding: 60px 0;
    }
}