: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;
}
/******************Section1 ***************/

.section1{
    background-size: cover;
    background-position: right;
    height: 300px;
}
.section1 a {
    border: none;  
    outline: none; 
    text-decoration: none;
}
.section1 h1{
    font-size: 70px !important;
    line-height: 74px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.8px;
    text-transform: initial;
    color: white;
}
.section1 p{
    font-size: 16px;
    line-height: 24px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0px;
    text-transform: none;
    max-width: 448px;
}


/********************Section 2********************/
.section2{
    background-color: #2E2A2B;
}
.section2_h2-1{
    max-width: 610px;
    text-transform: uppercase;
    font-size: 32px !important;
    margin-left: 0px !important;
    line-height: normal;
    font-weight: 700;
    letter-spacing: -0.8px;
}

/*form*/
.wpcf7{
    max-width: none !important;
    font-size: 20px;
    line-height: 30px;
    font-style: normal;
    font-weight: 400;
}
.row input{
    background-color: #272626 !important;
    border-radius: 0 !important;
    border: 1px solid #FFDEDE !important;
    color: white !important;
    height: 54px;
}
.row input:focus {
    outline: none !important;
    box-shadow: none !important;
}
.required {
    color: white;
    font-weight: bold;
    margin-left: 4px;
}
.wpcf7 input[type=submit]{
    background-color: var(--color-primario);
    max-width: 132px;
    height: 32px;
    color: white;
    border: 0;
    border-radius: 0;
    font-weight: 700;
}
.wpcf7 input[type=submit]:hover{
    background-color: white;
    color: var(--color-primario);
}

.wpcf7-checkbox{
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    margin-top: 25px;
}
#wpcf7-f545-o1 > form > p{
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
}
.wpcf7-list-item{
    margin: 0 !important;
}
.wpcf7-checkbox .wpcf7-list-item{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 23%;
    font-size: 14px;
    font-weight: 300;
}
.wpcf7-checkbox .wpcf7-list-item input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin: 0 10px 0 0;
    background-color: #272626;
    border: 2px solid #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    display: inline-block;
    position: relative;
    cursor: pointer;
}

/* Efecto cuando el checkbox está seleccionado */
.wpcf7-checkbox .wpcf7-list-item input[type="checkbox"]:checked {
    background-color: #fff;
    border-color: #272626;
}

/* Opcional: Agregar un ícono de check al seleccionar */
.wpcf7-checkbox .wpcf7-list-item input[type="checkbox"]:checked::after {
    content: "✔";
    font-size: 16px;
    color: var(--color-primario);
    position: absolute;
    top: 2px;
    left: 4px;
    font-weight: bold;
}
/*****************/

.divider{
    width: 90%;
    height: 2px;
    background-color: white;
}

.section2_div2 h2{
    font-size: 49px;
    line-height: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}
.section2_div2 h3{
    font-size: 29px;
    line-height: 40px;
    font-weight: 600;
    color: var(--color-primario);
}
.section2_div2 p{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.section2_div3 a{
    width: 180px;
    height: 46px;
    background-color: white;
    color: var(--color-primario);
    text-decoration: none;
    font-size: 16px !important;
    line-height: 33px;
    font-weight: 500;
    letter-spacing: -0.2px;
}
.section2_div3 a:hover{
    color: var(--color-primario);
}


/*Section 3*/
.section3{
    background-color: #211E1F;
}
.section3 a{
    text-decoration: none;
    color: white;
}
.section3 p{
    text-align: center;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 16px;
    font-weight: 600;
}
.section3 a:hover{
    color: var(--color-primario);
}
.section3 :visited{
    color: white;
}


/*Móvil*/
@media only screen and (max-width:768px){
    .section1{
        background-color: #211e1f;
        background-image: none !important;
        height: fit-content;
    }
    .section1 h1{
        font-size: 49px !important;
        line-height: 47px;
    }
    .section1_text_content{
        width: 100%;
    }
    .section1 img{
        width: 100%;
        object-fit: cover;
    }

    .section2_h2-1 {
        font-size: 23px !important;
    }
    .section2_div2 h2 {
        font-size: 30px;
        line-height: 40px;
    }
    .section2_div2 h3 {
        font-size: 31px;
        line-height: 30px;
    }
    .section3 p {
        font-size: 23px;
        text-align: center;
    }
}