/* /Fuentes de google/ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@200;300;400&display=swap');

/* /CSS/ */
:root{
    --gray-color:#808080;
    --header-height:3rem;
    --hue-color: #1a1a1a;
    --black-color: #FFFF;/* hsl(var(--hue-color), 4%, 4%);*/
    --black-color-alt: #FFFF;/*hsl(var(--hue-color), 4%, 8%);*/
    --title-color:#357f27;  /*hsl(var(--hue-color), 4%, 95%);*/
    --text-color: var(--gray-color);
    --text-color-light: (var(--hue-color));
    --white-color: #1a1a1a ;
    --body-color:#FFFF;       /*hsl(var(--hue-color), 4%, 6%);*/
    --container-color:#FFFFE0;
    --text-gradient: linear-gradient(var(--gray-color), #357f27);
    --scroll-thumb-color:var(--gray-color);
    --scroll-thumb-color-alt:var(--hue-color) ;

/* /Fuente y tipografia/ */
--body-font:'Noto Sans', sans-serif;
--biggest-font-size:5rem;
--bigger-font-size:3.5rem;
--big-font-size:2.5rem;
--h2-font-size:1.25rem;
--h3-font-size:1.125rem;
--normal-font-size:.938rem;
--small-font-size:.813rem;
--smaller-font-size:.75rem;
--text-line-height:2rem;
/* /Tamaño fuente/ */
--font-medium: 500;
--font-semi-bold: 600;
/*Margenes */
--mb-0-5: .5rem;
--mb-0-75: .75rem;
--mb-1: 1rem;
--mb-1-5: 1.5rem;
--mb-2: 2rem;
--mb-2-5: 2.5rem;


--z-tooltip: 10;
--z-fixed: 100;

}
/*Tipografia responsive*/
@media screen and (min-width:968px){
    :root{
--biggest-font-size:7.5rem;
--bigger-font-size:4.5rem;
--big-font-size:4rem;
--h2-font-size:1.5rem;
--h3-font-size:1.25rem;
--normal-font-size:1;
--small-font-size:.875rem;
--smaller-font-size:.813rem;
    }
}
/* /BASE/ */
*{
    box-sizing: border-box;
    padding:0;
    margin:0;

}
html{
    scroll-behavior: smooth;
}
body{
    margin:var(--header-height)0 0 0;
    font-family: var(--body-font);
    font-size:var(--normal-font-size);
    background-color: var(--body-color);
    color:var(--text-color);
}

h1,h2,h3{
    color:var(--title-color)
}
ul{
    list-style:none;
}
a{
    text-decoration: none;
}
button,
input{
    border:none;
    outline:none;
}
button{
    cursor:pointer;
}
img{
    max-width: 300%;
    height: auto;
}
/* /CSS REUSABLE/ */
.section{
    padding:4rem 0 2rem;

}
.section__title{
    font-size:var(--bigger-font-size);
    text-align:center;
    margin-top: -3rem;
    margin-bottom:var(--mb-2-5) ;

}
.section__title-gradient{
    background: var(--text-gradient);
    color:transparent;
    -webkit-background-clip:text;
    background-clip: text;
}
/* /layout/ */
.main{
    overflow:hidden;
}
.container{
    max-width: 968px;
    margin-left:var(--mb-1-5);
    margin-right: var(--mb-1-5);
}
.grid{
    display:grid;
}

/* /HEADER/ */
.header{
    width: 100%;
    position:fixed;
    top:0;
    left:0;
    z-index:var(--z-fixed);
    background: var(--body-color);
}
/* /NAV/ */
.nav{
    height: var(--header-height);
    display:flex;
    justify-content: space-between;
    align-items: center;
}
.nav__logo{
    display:flex;
    width:1.5rem;
}
.nav__toggle{
    font-size: 1.2rem;
    color:var(--white-color);
    cursor:pointer;
}
@media screen and (max-width:767px){
    .nav__menu{
        position:fixed;
        background-color: var(--body-color);
        top:-100%;
        left: 0;
        width: 100%;
        padding:4rem 0 3rem;
        transition:.04s;
    }
}

.nav__list{
    display:flex;
    flex-direction: column;
    align-items: center;
    row-gap:1rem;
}
.nav__link{
    color:var(--white-color);
    font-size: var(--h2-font-size);
    text-transform: uppercase;
    font-weight: var(--font-semi-bold);
    background: var(--text-gradient);
    color:transparent;
    -webkit-background-clip: text;
    background-clip: text;


}
.nav__link:hover{
    background: var(--white-color);
    color:transparent;
    -webkit-background-clip: text;
    background-clip: text;
}
.nav__close{
    position:absolute;
    font-size:1.5rem;
    top:1rem;
    right:1rem;
    color:var(--white-color);
    cursor:pointer; 
}

/* /showmenu/ */
.show-menu{
    top:0;
}
/* /Cambiar el fondo del header/ */
.scroll-header{
    background-color: var(--body-color);
}
/*Active Link */
.active-link{
    background: var(--white-color);
    color:transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

/* HOME*/
.video__container{
    display: flex;
    align-items: center;
    justify-content: center;

}
.home{
    background-color: #E9FFC7;
    width: 100%;
    height: 100%;
    margin-top: -7rem;
}
.home__img{
    width:200px;
    position:absolute;
    top:-1rem;
    right: 1.5rem;
}
.home__data{
    padding-top: 5rem;
}
.home__header{
    position:relative;
}
.home__title{
    font-size:var(--biggest-font-size);
    background: var(--text-gradient);
    color:transparent;
    -webkit-background-clip: text;
    background-clip: text;
    position:absolute;
    top:-4rem;
    left:1rem;
    line-height: 6rem;

}
.home__subtitle{
    font-size:var(--big-font-size);
    margin-bottom: var(--mb-2-5);
}
.home__title-description{
    font-size: var(--h3-font-size);
    font-weight: var(--font-medium);
    margin-bottom: var(--mb-1);
}
.home__description{
    margin-bottom: var(--mb-2-5);
    line-height: var(--text-line-height);
}
.home__price{
    font-size: var(--h3-font-size);
    font-weight: var(--font-semi-bold);
    margin-left: var(--mb-0-75);
}
/* /BOTONES/ */
.button{
    display:inline-block;
    background-color: #357f27;
    color:var(--white-color);
    padding: 1rem 1.25rem;
    border-radius:.5rem;
    transition:3s;

}
.button:hover{
    background-color: var(--black-color-alt);
}
.button__icon{
    font-size: 1.2rem;
}

.button--flex{
    display:inline-flex;
    align-items: center;
    column-gap:.75rem;
}

/* /SPONSOR/ */

.sponsor__tittle{
    font-size:var(--h3-font-size);
    background: var(--text-gradient);
    color:transparent;
    -webkit-background-clip: text;
    background-clip: text;
    top:0;
    left:10rem;
    text-align: center;
    line-height: 6rem;
}

.sponsor__img{
    width:90px;
}
.sponsor__container{
    grid-template-columns:repeat(auto-fit,minmax(110px,1fr));
    row-gap:5rem;
    justify-items: center;
    align-items: center;
    
}

/* /SPECS/ */
.specs{
    background-color: #FAFAFA;
    border-radius: 2%;
    margin:2rem auto auto auto;
   width: 80%;
   height: 80%;
}
.specs__container{
    position:relative;
}
.specs__content{
    row-gap:1.5rem;
}
.specs__data{
    display:grid;
    row-gap: .25rem;
}
.specs__icon{
    font-size: 1.2rem;
    color:var(--white-color);
}
.specs__title{
    font-size:var(--normal-font-size);
    font-weight: var(--font-medium);
}
.specs__subtitle{
    font-size: var(--small-font-size);
}
.specs__data:nth-child(1),
.specs__data:nth-child(4){
    margin-left: var(--mb-1-5);
}
.specs__img{
    width: 200px;
    position:absolute;
    top:2rem;
    right: -2rem;
}
/* /CASE/ */
.case{
    background-color: #FAFAFA;
    border-radius: 2%;
    margin:2rem auto auto auto;
   width: 80%;
   height: 80%;
}
.case__container{
    position: relative;
    grid-template-columns: reoeaat(2,1fr);
}
.case__data{
    padding: 5rem 0 3rem;
}
.case__img{
    width: 350px;
    position:initial;
    left: -8rem;
}
.case__description{
    margin-bottom:var(--mb-1-5);
    line-height: var(--text-line-height);
}
.discount__container{
    position:relative;
    background-color: var(--container-color);
    padding:2rem 1.5rem;
    border-radius: .75rem;

}
.discount__title{
    font-size:var(--h3-font-size);
    margin-bottom: var(--mb-0-75);
    
}
.discount__description{
    margin-bottom: var(--mb-1);
}

.discount__img{
    width: 200px;
    position:absolute;
    top:6.5rem;
    right:-4rem; 
}

/* /FOOTER/ */
.footer__container{
    grid-template-columns:repeat(auto-fit,minmax(220px.1fr));
    row-gap:2rem;
}
.footer__logo{
    width:2rem;
}
.footer__title{
    font-size: var(--h3-font-size);
    font-weight: var(--font-medium);
    margin-bottom: var(--mb-1);
}
.footer__links{
    display:flex;
    flex-direction: column;
    row-gap: .5rem;

}
.footer__link{
    color:var(--text-color);
}
.footer__link:hover{
    color:var(--white-color);
}
.footer__form{
    display:flex;
    column-gap: .5rem;
    background-color: var(--container-color);
    padding: .5rem .75rem;
    border-radius: .5rem;
    margin-bottom: var(--mb-2)
}
.footer__input{
    background-color: var(--container-color);
    width: 90%;
    color:var(--white-color);
}

.footer__imput::placeholder{
    color:var(--text-color);
    font-size: var(--normal-font-size);
    font-family: var(--body-font);
}
.footer__social{
    display:flex;
    column-gap: 1.25rem;
}
.footer__social-link{
    display:inline-flex;
    color: var(--white-color);
    background-color: var(--container-color);
    padding: .5rem;
    border-radius: .25rem;
    font-size: 1rem;
}
.footer__social-link:hover{
    background-color: var(--black-color);

}
.footer__copy{
    margin-top: 5rem;
    text-align: center;

}
.footer__copy-link{
    font-size: var(--small-font-size);
    color:var(--text-color-light);
}
/* /SCROLL UP/ */

.scrollup{
    position: fixed;
    right: 1rem;
    bottom: -20%;
    display: flex;
    background-color: var(--container-color);
    border-radius: .25rem;
    padding: .45rem;
    opacity: 9;
    z-index: var(--z-tooltip);
    transition: .4s;    
}
.scrollup__icon{
    color:var(--white-color);
    font-size: 1.35rem;
}
.scrollup:hover{
    background-color: var(--black-color);
    opacity: 1;
}
/* /show scroll up/ */
.show-scroll{
    bottom: 5rem;
}

/* /scroll bar/ */
::-webkit-scrollbar{
    width: .60rem;
    border-radius: .5rem;
}
::-webkit-scrollbar-thumb{
    background-color: var(--scroll-thumb-color);
    border-radius: .5;
}

::-webkit-scrollbar-thumb:hover{
    background-color: var(--scroll-thumb-color-alt);
}

/* AJUSTE PANTALLAS*/
@media screen and (max-width:340px){
    .container{
        margin-left: var(--mb-1);
        margin-right: var(--mb-1);
    }
    .section__title{
        font-size: var(--big-font-size);
    }

    .home__img{
        width: 300px;
        top:-13rem;
    }
    .home__title{
        top:-4rem;
        font-size: var(--bigger-font-size);
    }
    .home__data{
        padding-top: 1rem;
    }
    .home__description{
        font-size: var(--small-font-size);
    }
    
    .planes__title{
        top:-4rem;
        font-size: var(--bigger-font-size);
    }
    .planes__data{
        padding-top: 1rem;
    }
    .planes__description{
        font-size: var(--small-font-size);
    }

    .specs__img{
        width: 200px;
    }

    .case__container{
        grid-template-columns: 6.fr 1fr;
    }
    .case__img{
        width: 220px;
        top:-2rem;
        left:-9rem;
    }
    .case__data{
        padding: 0;
    }
}
/* /For medium devices/ */
@media screen and (min-width:576px){
    .home__container{
        grid-template-columns: 8.fr 1fr;
    }
    .home__data{
        padding-top: 2rem;
    }
    .home__img{
        top:-5rem;
        
    }
    .planes__container{
        grid-template-columns: 8.fr 1fr;
    }
    .planes__data{
        padding-top: 2rem;
    }
    
    .specs__img{
        position: initial;
    }
    .specs__container{
        grid-template-columns: repeat(2,1fr);
        justify-items: center;
        align-items: center;
    }
    .case__img{
        position:initial;
    }
    .case__data{
        padding: 0;
    }
    .case__container{
        grid-template-columns: max-content 250px;
        justify-content: center;
        align-items: center;
        column-gap: 2rem;
    }
   
    /* POR SI SE COLOCA LA IMAGEN */
    .discount__img{
        position: initial;
    }
    
    .discount__container{
        grid-template-columns: repeat(2,1fr);
        justify-items: center;
    }
}

@media screen and (min-width:767px){
    body{
        margin:0;
    }
    .section{
        padding: 6rem 0 2rem;
    }
    .nav{
        height: calc(var(--header-height)+1.5rem);
    }
    .nav__logo{
        width: 2rem;
    }
    .nav__list{
        flex-direction: row;
        column-gap: 3.5rem;
    }
    .nav__link{
        font-size: var(--normal-font-size);
        text-transform: initial;
    }
    .nav__toggle,
    .nav__close{
        display:none;
    }
    .home__container{
        position: relative;
        grid-template-columns: repeat(2,1fr);
    }
    .home__img{
        
        width: 500px;
        top:-1rem;
        left:-2rem;
    }
    .home__data{
        padding-top: 8rem;
    }
    .planes__container{
        position: relative;
       
    }
    .planes__data{
        padding-top: 8rem;
    }
    .specs__img{
        width: 100%;
    }
    .case__container{
        column-gap: 5rem;
    }
    .case__img{
        width: 300px;
    }
    .case__description{
        margin-bottom: var(--mb-2);
    }
    .discount__container{
        grid-template-columns: 250px max-content;
        justify-content: center;
        column-gap: 5rem;
        padding: 3rem 0;
    }
    .discount__title{
        font-size: var(--h2-font-size);
        margin-bottom: var(--mb-1);
    }
    .discount__description{
        margin-bottom: var(--mb-2);
    }
    .footer__container{
        grid-template-columns: .4fr .7fr .7fr .1fr;
    }
}

/* /For large devices/ */
@media screen and (min-width:1024px){
    .container{
        margin-left: auto;
        margin-right: auto;
    }
    .home__img{
        margin-top: 3rem;
        position: relative;
        width: 250px;
        top:2rem; 
        border-radius: 5%;
        /* top:5rem; */
    }
    .home__title{
        top:-5rem;
        left:3.5rem;
    }
    .home__description{
        padding-right: 5rem;
    }
    .planes__img{
        width: 500px;
        top:5rem;
    }
    .planes__title{
        top:-5rem;
        left:3.5rem;
    }
   
    .sponsor__img{
        width:100px;
    }
   
    .discount__img{
        width: 350px;
    }
    
    .footer__container{
        padding-top: 3rem;
    }
    .footer__copy{
        margin-top: 9rem;
    }
}
    
.planes__data{
    padding-top: 5rem;
}

/* PLANES*/
.planes__img{
    width:200px;
    position:absolute;
    top:-1rem;
    right: 1.5rem;
}
.planes__data{
    padding-top: 5rem;
    display: flex ;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.planes__footer{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.planes__header{
    position:relative;
}
.planes__title{
    
    font-size:var(--biggest-font-size);
    background: var(--text-gradient);
    color:transparent;
    -webkit-background-clip: text;
    background-clip: text;
    position:absolute;
    top:-4rem;
    left:1rem;
    line-height: 6rem;

}
.planes__subtitle{
    font-size:var(--big-font-size);
    margin-bottom: var(--mb-2-5);
}
.planes__title-description{
    font-size: var(--h3-font-size);
    font-weight: var(--font-medium);
    margin-bottom: var(--mb-1);
}
.planes__description{
    margin-bottom: var(--mb-2-5);
    line-height: var(--text-line-height);
    margin: 2rem;
}
.planes__price{
    font-size: var(--h3-font-size);
    font-weight: var(--font-semi-bold);
    margin-left: var(--mb-0-75);
    display: flex;
}
.planes__options{
    margin-top: 10rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}
.planes__option{
    display: flex;
    height: 60vh;
    
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
    width: 40%;
    border-radius: 5%;
    background-color: var(--container-color);
}
.planes_option > .planes_tittle{
    margin-top: 2rem;

}
.planes_option > .planes_description{
    margin: 3rem;
    
}
.planes__option > .button{
    margin-top: auto;
    margin-bottom: 5rem;
    
}
.planes_option > .planes_price{
    display: flex;
}
.titu{
    margin-top: 2rem;
}