/*--------------------------------------------------------------
>>> TABLA DE CONTENIDO:
----------------------------------------------------------------
#   Hero
#   Responsive
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: 'Barriecito';
    src: url('../fonts/Barriecito-Regular.woff2') format('woff2'),
        url('../fonts/Barriecito-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "Poppins", sans-serif;
    color: #fff;
    font-size: 16px;
    background-image: url('../images/fondo.jpg');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.seccion {
    padding: 90px 0;
}

/*=======================
#   Header
=========================*/
header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    padding-top: 40px;
    z-index: 10;
}

.box-select-idiomas {
    position: relative;
}

.box-select-idiomas::after {
    content: '';
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    vertical-align: -0.125em;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m7 10l5 5l5-5'/%3E%3C/svg%3E");
    position: absolute;
    top: 50%;
    right: 20px;
    z-index: 1;
    transform: translateY(-50%);
    pointer-events: none;
}

.selectIdiomas {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    appearance: none;
    width: 160px;
    max-width: 100%;
    height: 44px;
    border-radius: 50px;
    padding: 5px 24px;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 400;
}

.selectIdiomas option {
    color: #000;
}

/*=======================
#   Hero
=========================*/
.seccion_home {
    min-height: 100vh;
/*     background-color: #000; */
    color: #fff;
    display: flex;
    align-items: center;
}

.seccion_home h1 {
    font-family: 'Barriecito';
    font-size: 188px;
    line-height: 1;
}

.seccion_home .box_content p {
        font-size: 28px;
    line-height: 38px;
    margin-bottom: 0;

}
.seccion_home .box_content p.colorAma {
    color: #ffce35;
}

.seccion_home .box_content .cta {
    background-color: #ffce35;
    color: #232321;
    text-decoration: none;
    font-size: 26px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    width: 250px;
    max-width: 100%;
    height: 44px;
    border-radius: 44px;
    padding: 9px 20px;
    transition: all .2s ease;
}

.seccion_home .box_content .cta::after {
    content: '';
    display: inline-block;
    width: 27px;
    height: 21px;
    background-image: url('../images/icon-monstruos.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 10px;
}

.seccion_home .box_content .cta:hover {
    transform: scale(1.1);
}

/*=======================
#   Modal
=========================*/
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
    color: #2d2926;
    overflow-x: hidden;
    overflow-y: auto;
}

.popup.visible {
    visibility: visible;
    opacity: 1;
}

.popup-inner {
    height: 100%;
    padding: 12px;
    overflow-y: scroll;
    display: flex;
    align-items: center;
}

.popup-content {
    position: relative;
    width: 975px;
    max-width: 100%;
    background-color: #f6f2ed;
    border-radius: 20px;
    padding: 80px 24px 60px;
    outline: 0;
    margin: auto;
    font-size: 18px;
}

.popup.popup-xl {
    z-index: 1000;
}

.popup.popup-video {
    z-index: 1001;
}

.popup.popup-xl .popup-content {
    width: 1320px;
}

.close-btn {
    padding: 0;
    border: 0;
    background: transparent;
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer;
    z-index: 1;
}

.prev-btn {
    padding: 0;
    border: 0;
    background: transparent;
    position: absolute;
    top: 24px;
    left: 24px;
    cursor: pointer;
    z-index: 1;
}

.box-grid-pasos {
    display: grid;
    grid-template-columns: repeat(4, 164px);
    justify-content: center;
    gap: 24px;
}
.box-grid-pasos .item-paso {
    text-align: center;
}
.box-grid-pasos .item-paso .numero {
    width: 60px;
    height: 60px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 28px;
    line-height: 1;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 20px;
}
.box-grid-pasos .item-paso .text {}

.popup-btn {
    border: 1px solid #ff6900;
    background-color: #ff6900;
    color: #fff;
    text-decoration: none;
    font-size: 21px;
    line-height: 100%;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    max-width: 100%;
    height: 46px;
    border-radius: 44px;
    padding: 9px 20px;
    transition: all .2s ease;
    text-align: center;
    margin: auto;
}

.popup-btn:hover {
    text-decoration: none;
    color: #fff;
}

.pantalla-02 {}
.pantalla-02 .popup-body-content span {
    display: block;
}

.popup-body-content {
    font-size: 18px;
}

.popup-body-content .subTitle {
    color: #ff6900;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.popup-body-content .title {
    font-family: 'Barriecito';
    font-size: 97px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.popup-body-content .title {}

/* .superjai {
    background-image: url('../images/superjai.png');
    background-repeat: no-repeat;
    background-size: auto;
    background-position: left 130px;
}
.doom {
    background-image: url('../images/doom.png');
    background-repeat: no-repeat;
    background-size: auto;
    background-position: 110px 0px;
}
.shakasy {
    background-image: url('../images/shakasy.png');
    background-repeat: no-repeat;
    background-size: auto;
    background-position: 650px 0px;
}
.optimuss {
    background-image: url('../images/optimuss.png');
    background-repeat: no-repeat;
    background-size: auto;
    background-position: right 90px;
} */

.fondo-combinado {
    background-image: 
        url('../images/superjai.png'),
        url('../images/doom.png'),
        url('../images/shakasy.png'),
        url('../images/optimuss.png');
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-position: 
        left 130px,
        110px 0px,
        650px 0px,
        right 90px;
    background-size: auto, auto, auto, auto;
}

.pregunta-titulo {
    font-weight: 700;
    font-size: 2rem;
    text-align: center;
    max-width: 600px;
    margin: auto;
    margin-bottom: 32px;
}

.box-preguntas {
    max-width: 800px;
    margin: auto;
    margin-bottom: 24px;
}

.box-preguntas .pregunta-item {
    background-color: transparent;
    padding: 14px 24px;
    border: 1px solid #e2d6c8;
    border-radius: 10px;
    min-height: 60px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 19px;
    line-height: 1.5;
    margin-bottom: 10px;
    cursor: pointer;
}

.box-preguntas .pregunta-item:hover {
    background-color: #fff;
}

.box-preguntas .pregunta-item.item-select {
    background-color: #ffce35;
}

.progress-container {
    width: 100%;
    height: 7px;
    background-color: #e2d6c8;
    border-radius: 7px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: #ff6900;
    width: 0%;
    transition: width 0.4s ease;
}

.formulario-titulo {
    font-weight: 700;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10px;
}

.formulario-texto {
    font-size: 19px;
    line-height: 27px;
    max-width: 745px;
    margin: auto;
    text-align: center;
    margin-bottom: 32px;
}

.popup-formulario {
    max-width: 780px;
    margin: auto;
}

input[type="text"],
input[type="email"],
input[type="number"] {
    padding: 10px 24px;
    border: 1px solid #e2d6c8;
    border-radius: 46px;
    width: 100%;
}

select {
    padding: 10px 24px;
    border: 1px solid #e2d6c8;
    border-radius: 46px;
    width: 100%;
    appearance: none;
  color: #959493;
}

select option {
  color: #2d2926;
}

.select-custom {
    position: relative;
}
.select-custom::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%233b3734' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m7 10l5 5l5-5'/%3E%3C/svg%3E");
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    position: absolute;
    top: 50%;
    right: 24px;
    z-index: 1;
    transform: translateY(-50%);
    pointer-events: none;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #959493;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #959493;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #959493;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #959493;
}

.box-items-tips {
    max-width: 810px;
    margin: auto;
}

.item-tip {
    background: linear-gradient(90deg, rgba(0, 176, 240, 1) 0%, rgba(8, 80, 107, 1) 100%);
    padding: 19px 32px;
    border: 1px solid #e2d6c8;
    border-radius: 10px;
    margin-bottom: 14px;
    display: grid;
    grid-template-columns: 1fr 65px;
    gap: 16px;
    align-items: center;
    color: #fff;
    cursor: pointer;
}

.item-tip .tip {
    font-size: 18px;
    line-height: 26px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.item-tip .tip-titulo {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 0;
}

.item-tip .flecha {
    max-width: 100%;
    height: auto;
}

hr {
    border-top: 1px solid #e2d6c8;
    margin: 20px 0;
}

.item-test {
    background-color: #e2d6c8;
    border: 1px solid #e2d6c8;
    border-radius: 10px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.item-test img {
    max-width: 100%;
    height: auto;
}

.item-test .flecha {
    position: absolute;
    top: 50%;
    right: 32px;
    transform: translateY(-50%);
    z-index: 1;
}

/* .item-test.preguntas {
    background-image: url('../images/preguntas-dificiles.jpg');
    background-size: 100% 100%;
} */

.box-experiencia-grid {
    display: grid;
    grid-template-columns: repeat(5, 117px);
    justify-content: center;
    gap: 32px;
}

.box-experiencia-grid .exper-icon {
    position: relative;
    max-width: 177px;
}

.box-experiencia-grid .exper-icon .below {
    max-width: 100%;
    height: auto;
}

.box-experiencia-grid .exper-icon .over {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    visibility: hidden;
}

.box-experiencia-grid .exper-icon:hover .over,
.box-experiencia-grid .exper-icon.hover .over {
    opacity: 1;
    visibility: visible;
}

.monstruo_content_right {
    max-width: 669px;
    padding-left: 48px;
}

.monstruo_content_right h2 {
    font-family: 'Barriecito';
    font-size: 122px;
    line-height: 1;
}

.monstruo_content_right .text22 {
    font-size: 22px;
}

.monstruo_content_right .text18 {
    font-size: 18px;
}

.monstruo_content_right .box-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.cta-back {
    background-color: #000;
    border: 1px solid #000;
    color: #ffffff;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
    max-width: 100%;
    height: 46px;
    text-align: center;
    text-decoration: none;
    border-radius: 44px;
    padding: 9px 20px;
    transition: 0.2s;
}

.cta-back:hover {
    text-decoration: none;
    background-color: #fff;
    color: #000;
}

.cta-2 {
    background-color: #00b0f0;
    border: 1px solid #00b0f0;
    color: #ffffff;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    max-width: 100%;
    height: 46px;
    text-align: center;
    text-decoration: none;
    border-radius: 44px;
    padding: 9px 20px;
    transition: 0.2s;
}

.cta-2:hover {
    text-decoration: none;
    background-color: #fff;
    color: #00b0f0;
}

.cta-pdf {
    background-color: transparent;
    border: 1px solid #2d2926;
    color: #2d2926;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    max-width: 100%;
    height: 46px;
    text-align: center;
    text-decoration: none;
    border-radius: 46px;
    padding: 9px 20px;
    transition: 0.2s;
}

.cta-pdf:hover {
    text-decoration: none;
    background-color: #2d2926;
    color: #fff;
}

.feedback-container {
    max-width: 813px;
    margin: auto;
}

.box-feedback-head {
    display: grid;
    grid-template-columns: 219px 1fr;
    align-items: center;
    gap: 30px;
}

.box-feedback-head .text32 {
    font-size: 32px;
    line-height: 40px;
}

.box-feedback-items {}
.box-feedback-items ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.box-feedback-items ul li {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 20px;
}
.box-feedback-items ul li .numero {
    width: 62px;
    height: 62px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    color: #00b0f0;
}

.box-feedback-items ul li .text22 {
    font-size: 22px;
}

.box-feedback-conclusion {
    background-color: #fff;
    padding: 50px 50px;
    border: 1px solid #e2d6c8;
    border-radius: 10px;
}

.box-feedback-conclusion .text22 {
    font-size: 22px;
    line-height: 1;
    color: #00b0f0;
}

.feedback-container .popup-btn {
    border: 1px solid #00b0f0;
    background-color: #00b0f0;
}

.box_select_monstruos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: flex-end;
    gap: 10px;
    max-width: 1100px;
    margin: auto;
}

.item_monstruo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #2d2926;
    text-decoration: none;
    font-size: 60px;
    line-height: 1;
    font-family: 'Barriecito';
}
.item_monstruo img {
    margin-bottom: 10px;
    max-width: 100%;
    height: auto;
}
.item_monstruo span {}

.item_monstruo:nth-child(1) {
    color: #5a2781;
}
.item_monstruo:nth-child(2) {
    color: #3b7d23;
}
.item_monstruo:nth-child(3) {
    color: #084f6a;
}
.item_monstruo:nth-child(4) {
    color: #c00000;
}
.item_monstruo:hover {
    text-decoration: none;
}

/*=======================
#   Responsive
=========================*/
@media (max-width: 1400px) {}
@media (max-width: 1199px) {
    .seccion_home h1 {
        font-size: 150px;
    }
    .monstruo_content_right {
        padding-left: 0;
    }
    .monstruo_content_right h2 {
        font-size: 100px;
    }
    .item_monstruo {
        font-size: 48px;
    }
    .pregunta-titulo {
        font-size: 1.5rem;
    }
}
@media (max-width: 991px) {
    .seccion_home h1 {
        font-size: 130px;
    }
    .box-grid-pasos {
        grid-template-columns: repeat(2, 164px);
    }
    .fondo-combinado {
        background-position: left 130px, 110px 0px, 450px 0px, right 150px;
        background-size: 100px, 140px, 180px, 120px;
    }
    .box-experiencia-grid {
        grid-template-columns: repeat(5, 90px);
        gap: 24px;
    }
    .box-feedback-head {
        grid-template-columns: 160px 1fr;
    }
    .box-feedback-head .text32 {
        font-size: 28px;
        line-height: 36px;
    }
    .box_select_monstruos {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 24px;
        max-width: 600px;
    }
}
@media (max-width: 767px) {
    .seccion_home h1 {
        font-size: 96px;
    }
    .seccion_home .box_content p {
        font-size: 24px;
        line-height: 30px;
    }
    .box-feedback-head {
        grid-template-columns: 124px 1fr;
        align-items: flex-start;
        gap: 24px;
    }
    .box-feedback-head .text32 {
        font-size: 22px;
        line-height: 30px;
    }
    .box-feedback-conclusion {
        padding: 32px 32px;
    }
}
@media (max-width: 575px) {
    .seccion_home h1 {
        font-size: 64px;
    }
    .seccion_home .box_content p {
        font-size: 20px;
        line-height: 26px;
    }
    .seccion_home .box_content .cta {
        font-size: 24px;
        width: 225px;
    }
    .selectIdiomas {
        height: 40px;
    }
    .box-grid-pasos {
        gap: 10px;
    }
    .popup-body-content .title {
        font-size: 56px;
    }
    .fondo-combinado {
        background-position: left 0px, 80px 0px, 225px 0px, right 20px;
        background-size: 70px, 100px, 110px, 70px;
    }
    .formulario-titulo {
        font-size: 1.5rem;
    }
    .formulario-texto {
        font-size: 16px;
        line-height: 22px;
    }
    select {
        padding: 9px 24px;
        font-size: 14px;
    }
    input[type="text"], input[type="email"], input[type="number"] {
        padding: 9px 24px;
        font-size: 14px;
    }
    .item-tip {
        padding: 19px 20px;
        grid-template-columns: 1fr 40px;
    }
    .item-tip .tip-titulo {
        font-size: 20px;
        line-height: 26px;
    }
    .popup-content {
        font-size: 16px;
        margin-bottom: 32px;
    }
    .item-test .flecha {
        right: 16px;
        width: 24px;
    }
    .box-experiencia-grid {
        grid-template-columns: repeat(5, 50px);
        gap: 10px;
    }
    .monstruo_content_right h2 {
        font-size: 56px;
    }
    .monstruo_content_right .text22 {
        font-size: 20px;
        line-height: 26px;
    }
    .monstruo_content_right .text18 {
        font-size: 16px;
    }
    .cta-2,
    .cta-pdf {
        font-size: 16px;
    }
    .box-feedback-head {
        grid-template-columns: 1fr;
    }
    .box-feedback-items ul li {
        grid-template-columns: 40px 1fr;
        gap: 10px;
    }
    .box-feedback-items ul li .numero {
        width: 40px;
        height: 40px;
        font-size: 20px;    
    }
    .box-feedback-items ul li .text22 {
        font-size: 20px;
    }
    .item_monstruo {
        font-size: 28px;
    }
    .popup-inner {
        padding: 12px 12px 90px 12px;
    }
}
@media (max-width: 380px) {
    .seccion_home h1 {
        font-size: 56px;
    }
    .box-experiencia-grid {
        grid-template-columns: repeat(5, 41px);
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1288px;
    }
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type=text],
.iti--allow-dropdown input[type=tel],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type=text],
.iti--separate-dial-code input[type=tel] {
    padding-right: 6px !important;
    padding-left: 52px !important;
    margin-left: 0 !important;
}

#phone {
    padding-top: 11px;
    padding-bottom: 11px;
    border: 1px solid #e2d6c8;
    border-radius: 46px;
    width: 100%;
}
    @media (max-width: 575px) {
    #phone {
        padding-top: 9px;
        padding-bottom: 9px;
    }
}
.iti {
    width: 100%;
}