@import url('https://fonts.googleapis.com/css2?family=Montserrat: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&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');

:root{

    --negro: #0e0000;
    --blanco: #ececec;
    --gris_muy_claro: #e7e7e7;
    --gris_oscuro: #5d5d5d;
    --gris_muy_oscuro:rgb(51, 51, 51);
    --verde: #137513;

    --oliva_oscuro: #272b00;
    --olivia: #54582f;
    --verde: #86895d;
    --oro: #BEB37E;
    --amarrillo_claro: #feeeb8;

}

html{
    scroll-behavior: smooth;
}

body {
    position: relative;
    font-family: "Poppins";
    padding: 0;
    margin: 0;
    background-color: var(--blanco);
    scroll-behavior: smooth;
}

*{
    font-family: "Poppins";
}

video{

    z-index: 0;

}

#contActivate{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-color: rgb(0, 0, 0, 0.7);
    z-index: 101;
}

.activate{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 132px;
    height: 500px;
    width: 50%;
    background-color: var(--blanco);
    border: 1px solid var(--oro);
}

.activate h2{
    font-size: 1.1rem;
    color: var(--olivia);
}

.simpleRow{
    margin-top: 32px;
    display: flex;
    flex-direction: row;
    gap: 32px;
}

.coolP{
    width: 90%;
    color: var(--oro);
}

.coolImp{
    margin-top: 32px;
    height: 30px;
    width: 90%;
    border: none;
    background-color: var(--blanco);
    border-bottom: 2px solid var(--oro);
    outline: none;
}

.coolImp:focus{
    border-color: var(--olivia);
}

#amuletoAct{
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    right: 10px;
    bottom: 10px;
    height: 200px;
    width: 350px;
    color: #fff;
    background-color: var(--oro);
    /* background-image: url(../images/activateBanner.jpg);
    background-size: cover;
    background-position: center; */
    border-radius: 5px;
    border: 2px solid var(--oro);
    z-index: 100;
    overflow: hidden;
    transition: all 0.3s ease;
}

#amuletoAct:hover{
    cursor: pointer;
    transform: scale(105%);
}

#amuletoActBanner{
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    height: 90px;
    width: 100%;
    background-image: url(../images/activateBanner.jpg);
    background-position: center;
    background-size: cover;
}

#amuletoActBtns{
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    height: 80px;
    width: 90%;
}

#amuletoActBtns button{
    color: darkgoldenrod;
}

#amuletoActBtns button:hover{
    border-color: #fff;
    color: #fff;
}

.tachado{
    text-decoration: line-through;
    font-size: 0.7rem;
    color: darkgoldenrod;
}

#form-c{
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 1.2rem;
}

#form-c:hover{
    cursor: pointer;
    color: var(--olivia);
}

#cont-form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(0, 0, 0, 0.7);
    z-index: 100;
}

#form h3{
    margin-top: 43px;
    width: 90%;
}

#cont-bendiciones{
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    width: 70%;
}

.check-bless{
    display: flex;
    flex-direction: row;
    margin: 1.1rem 0;
}

.check-label{
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    cursor: pointer;
    user-select: none;
    margin: 0 4rem;
    font-size: 0.9rem;
    color: var(--olivia);
    text-wrap: nowrap;
    transition: all 0.3s ease-in-out;
}

.check-label::after{
    content: "";
    position: absolute;
    left: -70px;
    width: 60px;
    height: 30px;
    border: 1px solid var(--oro);
    border-radius: 20px;
    background-color: var(--gris_muy_claro);
    background-color: var(--olivia);
    transition: all 0.3s ease-in-out;
}

.check-label::before{
    content: "";
    position: absolute;
    z-index: 2;
    left: -36px;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: var(--blanco);
    border: 2px solid var(--gris_oscuro);
    transition: all 0.3s ease-in-out;
}

input:checked + .check-label{
    color: var(--oro);
}

input:checked + .check-label::before{
    transform: translateX(-30px);
    background-color: var(--amarrillo_claro);
}

input:checked + .check-label::after{
    box-shadow: 0 0 20px var(--amarrillo_claro);
}

.imp{
    padding: 0.5rem;
    width: 90%;
    border: 1px solid var(--gris_oscuro);
    border-radius: 5px;
}

#form{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 90%;
    width: 90%;
    background-color: var(--blanco);
    text-align: center;
    color: var(--oro);
    border-radius: 5px;
}

.detail{
    text-align: center;
    color: gray;
    font-size: 0.85rem;
    width: 90%;
    text-wrap: pretty;
}

.detail2{
    text-align: center;
    color: var(--gris_muy_claro);
    font-size: 0.85rem;
    width: 90%;
    text-wrap: pretty;
}

.b-detail{

    color: var(--oro);
    font-weight: 700;

}

#land{

    position: fixed;
    top: 0px;
    height: 100vh;
    width: 100%;
    overflow: hidden;

}

#land-text{

    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    color: var(--blanco);
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 5;

}

#burger{

    position: absolute;
    left: 40px;
    top: 20px;
    font-size: 1.7rem;

}

#socials{

    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    top: 25px;
    right: 80px;
    color: var(--blanco);
    gap: 1.7rem;
    font-size: 1.7rem;

}

#socials a{
    color: var(--blanco);
}

.social:hover{

    cursor: pointer;
    color: var(--oro);

}

#img-logo{

    right: 0px;
    height: 320px;
    width: 550px;
    background-image: url(../images/logo-png.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;

}

#burger{

    color: var(--blanco);
    background: none;
    border: none;
    font-size: 2rem;

}

#burger:hover{

    cursor: pointer;

}

#idioms{

    position: absolute;
    left: 70px;
    bottom: 60px;
    font-size: 1.6rem;

}

#idioms a{
    color: var(--blanco);
}

#paq-btn{
    position: absolute;
    right: 40px;
    bottom: 70px;
    border: 2px solid var(--blanco);
    background: none;
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 2px;
    font-family: "Poppins";
    color: var(--blanco);
}

#paq-btn:hover{
    cursor: pointer;
    color: var(--oro);
    border-color: var(--oro);
}

main{
    
    margin-top: 100vh;
    position: relative;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    background-color: var(--blanco);
    background-image: url(../images/background_texture.avif);
    background-size: 1100px;
    overflow: hidden;

}

#hot-package{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    margin-top: 32px;
    height: 700px;
    width: 100%;
    color: var(--negro);
    background-color: var(--gris_muy_claro);
}

#contPrincipals{
    height: auto;
    width: 100%;
    background-color: var(--gris_muy_claro);
}

#franjaPrincipals{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 30px;
    width: 100%;
    background-color: var(--oro);
}

#franjaPrincipals::before{
    content: var(--promo-banner-content);
    position: absolute;
    text-wrap: nowrap;
    animation: teleEffect 14s linear infinite;
    color: var(--blanco);
    font-weight: 600;
}

#principals{
    margin-top: 64px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    height: auto;
    width: 100%;
}

.principal{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 2rem 0;
    margin-bottom: 4rem;
    height: 100%;
    width: 45%;
    border: 1px solid var(--oro);
    background-color: var(--oro);
}

.principalImg{
    height: 200px;
    width: 200px;
    background-size: cover;
    background-position: center;
}

.principalData{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    text-align: center;
    color: var(--blanco);
    font-size: 0.8rem;
}

.principalOferta{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 100px;
    right: -30px;
    top: -30px;
}

.principalOferta i{
    font-size: 100px;
    color: var(--olivia);
}

.ofertaNumber{
    position: absolute;
    font-weight: 600;
    color: var(--blanco);
}

@keyframes teleEffect {
    0%{
        left: -20%;
    }

    100%{
        left: 110%;
    }
}

.cont-ams{

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 93%;
    margin-bottom: 2rem;

}

.title-serv{

    display: flex;
    flex-direction: column;
    padding: 0 1rem;
    background-color: var(--gris_muy_claro);
    color: var(--negro);
    width: 60%;

}

.title-serv h2{

    margin: 0;
    margin-top: 14px;

}

.cont-btn-ams{

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 30%;

}

.btn-ams{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gris_oscuro);
    font-size: 1.1rem;
    height: 70%;
    width: 30%;
    background-color: var(--gris_muy_claro);
    transition: 0.2s;
}

.btn-ams:hover{
    cursor: pointer;
    background-color: var(--gris_oscuro);
    color: var(--gris_muy_claro);
    transform: translateY(-5px);
    box-shadow: 10px 15px 5px rgba(0, 0, 0, 0.1);
}

.btn-ams:active{

    background-color: var(--oro);
    transform: translateY(2px);

}

#hot-img{

    height: 100%;
    width: 40%;
    background-image: url(../images/limpiaJerusalen.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;

}

#hot-text{

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    width: 50%;

}

#hot-title{

    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;

}

#hot-line{

    height: 5px;
    width: 40%;
    background-color: var(--oro);
    border-radius: 5px;

}

#hot-texti{

    text-align: center;

}

#hot-porcent{

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    gap: 1.3rem;
    color: var(--oro);

}

#hot-percent i{

    transform: rotate(220deg);

}

#hot-btn{
    background: none;
    border: 2px solid var(--oro);
    color: var(--oro);
    font-family: "Poppins";
    padding: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.5s;
}

#hot-btn:hover{
    cursor: pointer;
    background-color: var(--oro);
    color: var(--blanco);
}

#cont-services{

    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    width: 90%;

}

#servicios{

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 100%;

}

#title-servicios{

    font-weight: 500;
    margin-bottom: 0;
    font-size: 2rem;
    text-align: center;
    color: var(--blanco);
    background-color: var(--gris_muy_oscuro);
    padding: 0.8rem;
    border-radius: 5px;

}

#sub-servicios{

    text-align: center;
    padding: 0.5rem;
    margin-bottom: 4rem;
    font-weight: 600;
    color: var(--oro);
    background-color: var(--gris_muy_oscuro);

}

.img-service{
    height: 140px;
    width: 100%;
    background-image: url(../images/compu.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.cont-tambien{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--blanco);
    height: 100%;
    width: 27%;
    background-color: var(--oro);
    padding: 1rem 0;
}

.servicePrice{
    font-size: 0.8rem;
}

#tambien-img{

    height: 300px;
    width: 90%;
    background-image: url(../images/amuleto\ 1.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;

}

.cont-mini-services{
    flex-wrap: wrap;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 65%;
    height: auto;
}

.title-service{
    margin: 0;
    font-size: 0.9rem;
}

.sub-service{
    margin: 0;
    font-size: 0.7rem;
}

.service{

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    height: 350px;
    width: 27%;
    margin-bottom: 12px;
    color: var(--negro);
    background: var(--gris_muy_claro);
    transition: 0.5s;
    border: 1px solid var(--oro);

}

.cont-serv-back{

    height: 100%;
    width: 100%;

}

.service:hover{

    cursor: pointer;
    transform: scale(105%);
    box-shadow: 10px 15px 5px rgba(0, 0, 0, 0.1);

}

.btn-service{

    margin-top: 0.3rem;
    padding: 0.6rem 1rem;
    background: none;
    font-weight: 600;
    border: 2px solid var(--oro);
    color: var(--oro);
    font-family: "Poppins";
    transition: 0.5s;

}

.btn-service:hover{
    cursor: pointer;
    color: var(--blanco);
    background-color: var(--oro);
}

.btn-tambien{

    margin-top: 0.3rem;
    padding: 0.6rem 1rem;
    background: var(--blanco);
    font-weight: 600;
    border: 2px solid var(--oro);
    color: var(--oro);
    font-family: "Poppins";
    transition: 0.5s;

}

.btn-tambien:hover{
    cursor: pointer;
    color: var(--blanco);
    background-color: var(--oro);
}

#cont-why{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    margin-top: 4rem;
    height: 800px;
    width: 100%;
    background-color: var(--gris_muy_claro);
}

#why-img{
    height: 100%;
    width: 40%;
    background-image: url(../images/mineral.webp);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

#why-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    height: 80%;
    width: 40%;
    color: var(--negro);
}

#why-texti{
    text-align: center;
}

#why-line{
    height: 5px;
    width: 60%;
    background-color: var(--oro);
    border-radius: 5px;
}

#why-title{
    font-size: 1.9rem;
    text-align: center;
    font-weight: 500;
}

#why-btn{
    background: none;
    color: var(--oro);
    border: 2px solid var(--oro);
    padding: 1rem;
    font-size: 1.1rem;
    font-family: "Poppins";
    font-weight: 600;
    transition: 0.5s;
}

#why-btn:hover{

    cursor: pointer;
    background-color: var(--oro);
    color: var(--blanco);

}

#contPaypal{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 64px;
    width: 100%;
    height: 500px;
    text-decoration: none;
    background: rgb(0,99,204);
    background: linear-gradient(61deg, rgba(0,99,204,1) 0%, rgba(2,21,54,1) 100%);
    img{
        height: 90%;
    }   
}

#paypalText{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    h2{margin-bottom: 32px;}
    button{
        background-color: rgb(255, 200, 0);
        color: rgb(2, 74, 151);
        border: none;
        border-radius: 5px;
        font-weight: 700;
        padding: 1rem 2rem;
    }
}

#cont-bless{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 64px;
    height: auto;
    width: 100%;
    color: var(--blanco);
    box-sizing: border-box;
    background-color: var(--oro);
}

#bless-text{
    width: 55%;
    padding: 0 2rem;
    box-sizing: border-box;
}

#bless-img{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 45%;
}

@media(max-width:808px){

    .activate{
        width: 90%;
    }

    #amuletoAct{
        height: 250px;
        width: 250px;
    }

    #amuletoActBanner{
        text-align: center;
        font-size: 0.9rem;
    }
    #amuletoActBtns{
        height: 100px;
        flex-direction: column;
        align-items: center;
        margin-bottom: 32px;
    }
    #amuletoAct button{
        font-size: 0.8rem;
    }

    #contPaypal{
        flex-direction: column;
        height: auto;
        padding: 42px 0;
    }
    #paypalText h2{
        font-size: 1.2rem;
    }
    #paypalImg{
        width: 50%;
    }
    #burger{
        font-size: 1.2rem;
    }
    #socials{
        gap: 22px;
        font-size: 1.1rem;
        right: 20px;
    }
    #idioms{
        left: 20px;
        font-size: 1.3rem;
    }
    #paq-btn{
        right: 20px;
        font-size: 1.1rem;
    }
    #img-logo{
        width: 70%;
    }
    #hot-package{
        flex-direction: column;
        height: auto;
    }
    #hot-title{
        font-size: 1.2rem;
        color: var(--oro);
    }
    #hot-line{
        width: 90%;
        height: 2px;
    }
    #hot-img{
        height: 300px;
        width: 64%;
    }
    #hot-text{
        height: auto;
        margin: 1rem 0;
        width: 90%;
        font-size: 0.9rem;
    }
    #hot-porcent{
        font-size: 1.2rem;
    }
    #hot-btn{
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    #cont-services{
        flex-direction: column-reverse;
        width: 100%;
    }
    #servicios{
        flex-direction: column;
    }
    .cont-tambien{
        justify-content: center;
        align-items: center;
        height: auto;
        width: 100%;
        gap: 20px;
        padding: 1rem 0;
        text-align: center;
    }
    .cont-tambien button{
        margin: 0;
    }
    #tambien-img{
        height: 200px;
        width: 100%;
    }
    .cont-mini-services{
        margin-top: 32px;
        width: 100%;
    }
    .service{
        height: auto;
        gap: 12px;
        padding: 12px 0;
        width: 170px;
    }
    .img-service{
        height: 70px;
    }
    .btn-service{
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
    }
    .title-serv{
        font-size: 0.7rem;
    }
    .title-service{
        font-size: 0.7rem;
    }
    .cont-ams{width: 100%;}
    .btn-ams{
        height: 100%;
        width: 240px;
    }
    #cont-why{
        height: 700px;
        margin-top: 0px;
        flex-direction: column;
    }
    #why-text{
        height: auto;
        width: 90%;
        font-size: 0.9rem;
    }
    #why-title{
        font-size: 1.2rem;
        color: var(--oro);
    }
    #why-img{
        height: 200px;
        width: 100%;
    }
    #cont-bless{
        padding: 3rem 0;
        flex-direction: column-reverse;
        font-size: 0.85rem;
    }
    #bless-text{width: 90%; padding: 0;}
    .check-label, .imp{
        font-size: 0.8rem;
    }
    #form h3{
        font-size: 1rem;
    }

    #contPrincipals{
        margin-top: 64px;
    }

    #principals{
        flex-direction: column;
    }

    .principal{
        height: auto;
        width: 90%;
    }

    .principalImg{
        width: 40%;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .principalData{
        font-size: 0.7rem;
    }

    .principalOferta{
        height: 80px;
        top: -50px;
        font-size: 0.9rem;
    }

    .principalOferta i{
        font-size: 80px;
    }

}