@import url('https://fonts.googleapis.com/css2?family=Anybody:ital,wght@0,400;0,800;1,600&family=Montserrat:ital,wght@0,500;0,600;1,700;1,800;1,900&display=swap');

:root{
    --padding-container: 100px 0;
    --color-title: #001a49;
}

html{
    scroll-behavior: smooth;
}

body {
    /*font-family: 'Anybody', cursive;*/
    font-family: font-black, font-sans;
/*font-family: 'Montserrat', sans-serif;*/
background-color: #c7f5fb66;
}


a.ctainicio:hover{
    background-color: #e9f2f4;
    color:#020c1e;
    
    font-size: 1.2em;


}

.ctainicio{
 /*   margin-bottom: 15px;
    display: inline-block;
    height: 80%;
    width: 20%;
    opacity: 90%;
    
    
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    line-height: 1.2; 
    

    background-color:#007bff; 
    justify-self: center;
    color: #ffffff;
    padding: 25px 25px;
    border-radius: 5px;
    font-size: 1.1em;
    text-decoration:none;

    border-style: solid;
    overflow: hidden;
    box-shadow:inset 0 0 0 1px rgba(0,0,0,0.1);
	text-decoration: none;
	transition: all ease 0.5s;*/
     margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    width: 20%;
    min-height: 60px;
    padding: 20px;

    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #ffffff;

    font-size: 1.1em;
    font-weight: 600;
    letter-spacing: 0.5px;

    border-radius: 10px;
    border: none;

    text-decoration: none;
    cursor: pointer;

    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.35);
    transition: 
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.3s ease;
}
.ctainicio:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.45);
    background: linear-gradient(135deg, #0069d9, #004a99);
}
@media (max-width: 768px) {
    .ctainicio {
        width: 90%;
        font-size: 1em;
    }
}
.instructivos__wrapper {
    
    width: 330px; 
    
    margin: 0 auto; 
    text-align: center;
}

.container{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;  
    padding: var(--padding-container);
}

.hero{
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    position: relative;
    display: grid;
    grid-template-rows: 100px 1fr;
    color: #fff;
    
}



.hero::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;

    background-image: linear-gradient(180deg, #0000008c 0%,  #0000008c 100%),url('Fondo.jpg');
    
    
    background-size: cover;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 95%, 0 80%);
    z-index: -1;
}


/* Nav */

.nav__logo{
    
    position: absolute;
    width: 200px; 
}

.nav{
    --padding-container:0;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav__title{
    font-weight: 300;

}


.nav__link{
    margin-left: auto;
    padding: 0;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 2em;
}


.nav__items{
    list-style: none;
}

.nav__links{
    color: #fff;
    text-decoration: none;
}
.nav__links:hover{
    color:#001a49;
}

.nav__menu{
    margin-left: auto;
    cursor: pointer;
    display: none;

}


.nav__img{
    display: block;
    width: 30px;

}

.nav__close{
    display: var(--show, none);

}





.hero__paragraph{
    margin-bottom: 20px;
}

.ctaxxx{
    display: inline-block;
    background-color:#30d3f7;
    justify-self: center;
    color: #fff;
    text-decoration: none;
    padding: 13px 30px;
    border-radius: 32px;
    
}



/* About */


.about{
    text-align: center;
    
}



.subtitle{
    color: var(--color-title);
    font-size: 2rem;
    margin-bottom: 25px;

}

.about__paragraph{
    line-height: 1.7;
}

.about__main{
    padding-top: 80px;
    display: grid;
    width: 100%;
    margin: 0 auto;
    gap: 1em;
    overflow: hidden;
    grid-template-columns: repeat(auto-fit, minmax(230px, auto));
    
    
}
.email__table{
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5em;
    justify-content: space-evenly;
    align-items: center;
}

.email__element1{
    background-color: #a8e4ed;
    color:#000;
    text-align: center; 
    border-radius: 10px; 
    width: 530px;
    padding: 40px;
}

form{
    width:520px;
	padding:16px;
	border-radius:10px;
	margin:auto;
    color:#000;
	background-color:#ccc;
}
form label{
	width:102px;
	font-weight:bold;
	display:inline-block;
}
form input[type="text"],
form input[type="email"]{
	width:180px;
	padding:3px 10px;
	border:1px solid #f6f6f6;
	border-radius:3px;
	background-color:#f6f6f6;
	margin:8px 0;
	display:inline-block;
}
form input[type="submit"]{
	width:100%;
	padding:8px 16px;
	margin-top:32px;
	border:1px solid #000;
	border-radius:5px;
	display:block;
	color:#fff;
	background-color:#000;
} 

form input[type="submit"]:hover{
	cursor:pointer;
}

textarea{
	width:100%;
	height:100px;
	border:1px solid #f6f6f6;
	border-radius:3px;
	background-color:#f6f6f6;			
	margin:8px 0;
	/*resize: vertical | horizontal | none | both*/
	resize:none;
	display:block;
}


.envio__email{
    padding-top: 80px;
    display: grid;
    width: 100%;
    margin: 0 auto;
    gap: 1em;
    overflow: hidden;
    grid-template-columns: repeat(auto-fit, minmax(230px, auto));
}

.about__icons{
    display: grid;
    gap: 1em;
    justify-items: center;
    width: 260px;
    overflow: hidden;
    margin: 0 auto;
    
    
}

.about__icon{
    width: 40px;
}

.about__title2{
    font-size: 2.8em;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color:rgba(0,0,0,.5);
    font-display:initial;
    font-style: oblique;
    font-style: italic;
    
}
.about__title1{
    font-size: 2em;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color:rgba(79, 84, 91, 0.995);
    font-display:initial;
    font-style: oblique;
    font-style: italic;
    
}


/* knowledge */

.knowledge {
    background-color: #e5e5f7;
    background-image: radial-gradient(#444cf7 0.5px, transparent 0.5px), radial-gradient(#444cf7 0.5px, #e5e5f7 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    overflow: hidden;
}


.knowledge__container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
    align-items: center;
}

.knowledge__picture{
    max-width: 500px;
}

.knowledge__paragraph{
    line-height: 1.7;
    margin-bottom: 15px;
}

.knowledge__img{
    width: 100%;
    display: block;
}




/* Price */


.price{
    text-align: center;
}

.price__table{
    padding-top: 60px;
    display: flex;
    flex-wrap: wrap; 
    gap: 2.5em;
    justify-content: space-evenly; 
    align-items: center;

}

.price__element{
    background-color: #e5e5f7;
    text-align: center;
    border-radius: 10px;
    width: 330px;
    padding: 40px;
    --color-plan: #696871;
    --color-price: #1D293F;
    --bg-cta: #fff;
    --color-cta: #5454D4;
    --color-items: #696871;
}

.price__element1{
    background-color: #a8e4ed;
    text-align: center;
    border-radius: 10px;
    width: 330px;
    padding: 40px;
   
}

.price__element11{
    background-color: #f0805b;
    text-align: center;
    border-radius: 10px;
    width: 330px;
    padding: 12px;
    /* DEJA ESTA LÍNEA ASÍ */
    margin: 6px auto; 
    /* ... */
}



.price__title{
    color:#515898
   
}
.price__title1{
    color:#515898;
    font-weight: 300;
    font-size: 1.5rem;
}

.price__element--best{
    width: 370px;
    padding: 60px 40px;
    background-color: #FF7143;
    --color-plan: rgb(255 255 255 / 75%);
    --color-price: #fff;
    --bg-cta: #9F3919;
    --color-cta: #FFF;
    --color-items: #fff;
}


.price__name{
    color: var(--color-plan);
    margin-bottom: 15px;
    font-weight: 300;
}

.price__price{
    font-size: 2.5rem;
    color: var(--color-price);
    
}

.price__items{
    margin-top: 35px;
    display: grid;
    gap:1em;
    font-weight: 300;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: var(--color-items);
    
}


.price__cta{
display: block;
padding: 20px 0;
border-radius: 10px;
text-decoration: none;
background-color: var(--bg-cta);
font-weight: 600;
color: var(--color-cta);
box-shadow: 0 0 1px rgba(0,0,0,.5);
}



/* Testimony */

.testimony{
    background-color: #e5e5f7;
}

.testimony__container{
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    align-items: center;
    gap: 1em;
    
}


.testimony__body{
    display: grid;
    grid-template-columns: 1fr max-content;
    justify-content: space-between;
    align-items: center;
    gap: 2em;
    grid-column: 2/3;
    grid-row: 1/2;
    opacity: 0;
    pointer-events: none;
}


.testimony__body--show{
    pointer-events: unset;
    opacity: 1;
    transition: opacity 1.5s ease-in-out;
}

.testimony__img{
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 50% 30%; 
}

.testimony__texts{
    max-width: 700px;
    margin: 0 auto;
}

.testimony__course{
    background-color: royalblue;
    color: #fff;
    display: inline-block;
    padding: 5px;
}

.testimony__arrow{
    width: 90%;
    cursor: pointer;
   
}

/* Questions */

.questions{
    text-align: center;
}

.questions__container{
    display: grid;
    gap: 2em;
    padding-top: 50px;
    padding-bottom: 100px;
    
}

.questions__padding{
    padding: 0;
    transition: padding .3s;
    border: 1px solid #5454D4;
    border-radius: 6px;

}

.questions__padding--add{
    padding-bottom: 30px;
}

.questions__answer{
    padding: 0 30px 0;
    overflow: hidden;
}

.questions__title{
    display: flex;
    padding: 30px 0 30px;
    cursor: pointer;
    color: var(--color-title);
    justify-content: space-between;
    font-size: 20px;

}

.questions__arrow{
    border-radius: 50%;
    background-color: var(--color-title);
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: flex-end;
    margin-left: 10px;
    transition: transform .3s;
}

.questions__arrow--rotate{
    transform: rotate(180deg);
}

.questions__show{
    text-align: left;
    height: 0;
    transition: height .3s;

}

.questions__img{
    display: block;
}


.questions__copy{
    width: 60%;
    margin: 0 auto;
    margin-bottom: 30px;
    
}

.questions__offer {
    
    background-color: #001a49; 
    padding: 80px 0; 
    text-align: center; 
    color: #fff; 
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.questions__offer .subtitle {
    color: #c7f5fb; 
    margin-bottom: 15px;
}

.questions__offer .questions__copy {
    color: #f0f0f0;
    margin-bottom: 30px;
    font-size: 1.1em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}


.questions__offer .cta {
    display: inline-block;
    padding: 15px 40px;
    background-color: #FF7143; 
    color: #fff;
    font-weight: bold;
    font-size: 1.25rem;
    text-decoration: none;
    border-radius: 8px; 
    transition: all 0.3s ease;
    
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.questions__offer .cta:hover {
    background-color: #e65c2a; 
    transform: translateY(-2px); 
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}


/* footer */

.footer{
    background-color: #1D293F;
}

.footer__title{
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: 30px;
}

.footer__title{
    color: #FFF;
}
.footer__cel{
    color: #1a0661;
    font-size: 1.1em;
}

.footer__container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #fff;
    padding-bottom: 60px;
}

.nav--footer{
    padding-bottom: 20px;
    display: grid;
    gap: 1em;
    grid-auto-flow: row;
    height: 100%;
}

.nav__link--footer{
    display: flex;
    margin: 0;
    margin-right: 20px;
    flex-wrap: wrap;
}

.footer__inputs{
    margin-top: 10px;
    display: flex;
    overflow: hidden;
}

.footer__input{
    background-color: #fff;
    height: 50px;
    display: block;
    padding-left: 10px;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    border: none;
    margin-right: 16px;
}

.footer__submit{
    cursor:pointer;
    margin-left: auto;
    display: inline-block;
    height: 50px;
    padding: 0 20px;
    background-color:#30d3f7;
    border: none;
    font-size: 1rem;
    color: #fff;
    border-radius: 6px;
}

.footer__copy{
    --padding-container:30px 0;
    text-align: center;
    color: #fff;
}

.footer__copyright{
    font-weight: 300;
}

.footer__icons{
   margin-bottom: 10px;

}

.footer__img{
    width: 30px;
}





.hero__title{
    font-size: 2.5rem;
    position: static;
    transform: none; 
    top: auto;
    left: auto;
    
    margin-bottom: 0; 
    color:#b7e9e9;
    text-align: center;
}

.hero__container{
    max-width: 90%;
    margin: 0 auto;
    --padding-container:0;
    
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    
    gap: 1.5em; 
    padding-bottom: 50px;
    padding-top: 50px;
    height: 100%; 
}

/* Media Queries */

@media (max-width:800px){



.ctainicio{
        margin-bottom: 15px; 
        line-height: 1.2;
        height: auto;
        display: block;
        max-width: 300px;
        width: 70%;
        padding: 15px 20px; 
        margin: 10px auto; 
        font-size: 1em;
    }

.nav__logo{
        position: relative; 
        left: auto;
        top: auto;
        padding: 0; 
        width: 150px; 
        margin: 20px auto 10px; 
    }

.hero__title{
        font-size: 2rem;
        margin-bottom: 20px; 
    }



.hero__container{
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .nav__menu{
        display: block;
    }

    .nav__link--menu{
        position: fixed;
        background-color: #000;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        z-index: 100;
        opacity: 0;
        pointer-events: none;
        transition: .7s opacity;
    }

    .nav__link--show{
        --show: block;
        opacity:1 ;
        pointer-events: unset;
    }

    .nav__close{
        position: absolute;
        top: 30px;
        right: 30px;
        width: 30px;
        cursor: pointer;
    }

   .instructivos__wrapper {
        width: 90%; 
        margin: 0 auto;
        
        display: block; 
    }

.price__element11 {
        
        width: 100%;         
        margin: 6px 0; 
        text-align: center;
    }

    
    .about__main{
        gap: 2em;
    }

    .about__icons:last-of-type{
        grid-column: 1/-1;
    }

    .knowledge__container{
        grid-template-columns: 1fr;
        grid-template-rows: max-content 1fr;
        gap: 3em;
        text-align: center;
    }

    .knowledge__picture{
        grid-row: 1/2;
        justify-self: center;
    }

    .testimony__container{
        grid-template-columns: 30px 1fr 30px;
    }

    .testimony__body{
        grid-template-columns: 1fr;
        grid-template-rows: max-content max-content;
        gap: 3em;
        justify-items: center;
    }

    .testimony__img{
        width: 200px;
        height: 200px;
    }

    .questions__copy{
        width: 100%;
    }

    
    .footer__container{
        flex-wrap: wrap;
    }

    .nav--footer{
        width: 100%;
        justify-items: center;
    }

    .nav__link--footer{
        width: 100%;
        justify-content: space-evenly;
        margin: 0;
    }

    .footer__form{
        width: 100%;
        justify-content: space-evenly;
    }


    .footer__input{
        flex: 1;
    }

    .footer__wpp{
        justify-items: center;
        color: #1a0661;
        
    }

}

    
   

