* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

button:hover{
    cursor: pointer;
}

img {
    max-width: 100%;
}

.brDesktop{
    display: block;
}

.heroContainer {
    background-color: #092646;
}

.hero {
    display: grid;
    grid-template-columns: .6fr 1fr;
    justify-content: space-between;
    align-items: center;
    padding-top: 180px;
    
}

.heroText {
    padding:  0 0 100px 90px;
}

.heroText .ebook, .heroText .brochure{
    color: #FF7600;
    font-family: Roboto;
    font-size: 25px;
    font-weight: 600;   
}

.heroText .brochure{
    color: #00CED3;
}

.heroText h1 {
    color: #FFF;
    font-family: Montserrat;
    font-size: 45px;
    font-weight: 600;
    line-height: 50px; /* 111.111% */
    margin: 10px 0;
}

.heroText p {
    color: #FFF;
    font-family: Roboto;
    font-size: 22px;
    font-weight: 300;
    line-height: 32px; /* 145.455% */
}

.heroText img {
    width: 60px;
    margin-top: 30px;
}

.heroForm {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.imgPortada {
    position: absolute;
    left: -15px;
    margin-top: 0px;
    width: 410px;
}

.imgPersona {
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 1;
    width: 360px;
    transform: scaleX(-1);
}

form {
    margin-top: 0px;
    width: 350px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #CBCAC8;
    background: #FFF;
    z-index: 2;
}

form input, .pais {
    border-radius: 6px;
    border: 1px solid #004BC2;
    padding: 10px;
    color: #00224C;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

form .bttnPrincipal {
    width: fit-content;
}

form h2 {
    color: #004DBC;
    font-family: Montserrat;
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.sentDescription{
    color: #00224C;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

.hidden {
    display: none;
}

.show {
    display: block;
}

.pais img, .paisList li img {
    max-height: 100%;
    height: 20px;
}

.paisList li  img {
    margin-right: 10px;
    margin-bottom: -3px;
}

.pais:hover {
    cursor: pointer;
}

.pais #arrow {
    padding-top: 3px;
}

.pais p img {
    font-size: 10px;  
}

.paisList {
    overflow-y: auto;
    width:300%;
    background-color: white;
    position: absolute;
    top: 43px;
    padding: 10px;
    border-radius: 10px;
    border: solid 1px lightgrey;
}

.paisList li {
    cursor: pointer;
    padding: 10px 20px;
    font-size: 16px;
    border-bottom: solid 1px lightgrey;
    font-family: 'Roboto', sans-serif;
}

.paisList li:last-child {
    border-bottom: none;
}

.telefonoIputCodarea {
    position: relative;
}

.telefonoIput {
    display: grid;
    grid-template-columns: 25% 75%;
}

.pais {
    display: flex;
    justify-content: space-between;
    color: grey;
    margin-right: 3px;
}

.paisListOptions span {
    color: grey;
    margin-left: 10px;
}

/* Estilo general para el marcador de posición */
::placeholder {
    color: #00224C;
  }
  
  /* Estilo específico para el marcador de posición en navegadores WebKit (Chrome, Safari) */
  ::-webkit-input-placeholder {
    color: #00224C;
  }
  
  /* Estilo específico para el marcador de posición en navegadores Firefox */
  :-moz-placeholder {
    color: #00224C;
  }
  
  /* Estilo específico para el marcador de posición en Edge */
  ::-ms-input-placeholder {
    color: #00224C;
  }
  
  .emailValidatorContainer {
    font-family: 'Roboto',sans-serif;
    font-size: 14px;
    margin-top: -10px;
    margin-left: 10px;
    color: red;
    height: 10px;
}

#emailValidatorText {
    display: none;
}
.visible {
    display: block !important;
}
/***************************/
.cta {
    padding: 180px 90px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    background-color: #EDECE8;
    background-image: url(images/bkg.svg);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 180px;
}

.cta h2 {
    color: #092646;
    text-align: center;
    font-family: Montserrat;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 35px; /* 116.667% */
}

.bttnPrincipal {
    padding: 15px 50px;
    background-color: #FC7E00;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-size: 18px;
    transition: 0.5s;
}

.bttnPrincipal:hover{
    background-color: #E26B04;
}


@media (max-width:1000px) {

    .brDesktop{
        display: inline;
    }

    .hero {
        grid-template-columns: 100%;
        padding: 100px 0px 0;
    }

    .heroText {
        padding: 30px;
        margin-bottom: 50px;
    }

    .heroText h1 {
        font-size: 35px;
        line-height: normal;
    }

    .heroText p {
        font-size: 16px;
        line-height: 22px;
    }

    .heroText img {
        display: none;
    }

    form {
        margin-bottom: 300px;
        width: 90%;
        padding: 30px 20px;
    }

    .imgPortada {
        width: 250px;
        bottom: 0px;
        left: auto;
        right: 0px;
    }

    .imgPersona {
        left: 0px;
        right: auto;
        width: 170px;
        transform: none;
    }

    .cta {
        padding: 100px 30px;
        background-image: url(images/bkg-mobile.svg);
        background-size: 100px;
        align-items: flex-start;
        background-position: bottom right;
    }
    
    .cta h2 {
        font-size: 25px;
        text-align: start;
    }

}

@media (min-width:1000px) and (max-width:1300px) {
    .imgPersona, .imgPortada {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr 1fr;
    }

    .brDesktop{
        display: inline;
    }

}

@media (min-width:701px) and (max-width:900px) {
    form {
        width: 70%;
    }

    .imgPersona {
        left: 25%;
    }

    .imgPortada {
        right: 25%
    }

    .brDesktop{
        display: inline;
    }
}

@media (min-width:901px) and (max-width:999px) {
    .hero {
        padding: 90px 90px 0;
    }

    .imgPersona {
        left: 25%;
    }

    .imgPortada {
        right: 25%;
    }

    .cta {
        padding: 90px;
        align-items: center;
    }
    
    .cta h2 {
        text-align: center;
    }

    .brDesktop{
        display: inline;
    }
}

@media (min-width:1209px) {
    .containerLayout {
        margin: 0 auto;
        max-width: 1366px
    }
}

@media (min-width:768px) and (max-width:1800px) {
    nav,
    div.footer {
        zoom: .85
    }

    .box-menu button {
        line-height: 1.19
    }
}