
body{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    /* background-color: #2B2F3A; */
    background-color: #fdb9ab;
    color: black;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html{
    scroll-behavior: smooth;
}

.nav {
    position: fixed;
    top: 0px;
    height: 60px;
    display: flex;
    justify-content: space-between;
    background-color: aliceblue;
    width: 100%;
    z-index: 1;
    background-color: aliceblue;
}

.burgerbtn{
    display: none;
    margin-top: 25px;
    width: 40px;
    height: 30px;
    border-radius: 100px;
}

.linksContainer{
    display: flex;
}

.linkChild{
    list-style: none;
    margin: 0px 15px;
    color: black;
    font-size: large;
}

a{
    text-decoration: none;
    color: inherit;
}

.logo{
    height: 60px;
    width: 60px;
    border-radius: 100px;
}

/* Aqui termina el nav */

h1{
    font-size: 70px;
    display: flex;
    justify-content: center;
}

.bannerContainer{
    display: flex;
    width: 100%;
    height: auto;
    margin-top: 70px;
}

.description{
    font-size: 22px;
}

.bannerContainerChild, .bannerContainerChild1{
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 10px;
    width: 50%;
    align-items: center;
    /* background-color: red; */
    height: auto;
}

.banner{
    width: 60%;
    height: auto;
    border-radius: 200px;
}

.buttonContact{
    width: 200px;
    height: 50px;
    font-size: 15px;
    margin-top: 20px;
    border: none;
    background-color: white;
    border-radius: 100px;
    box-shadow: -1px 1px 5px 1px  black;
}

/* Aqui termina el banner principal */

.cardsContainer{
    margin-top: 200px;
    height: 300px;
}

.cardsChild{
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.card{
    width: 24%;
    height: auto;
    margin-left: 15px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    background-color: #ffe2e2;
    align-items: center;
    text-align: center;
    border: 1px solid black;
}


.circle{
    /* background-color: rgb(255, 123, 0); */
    background-color: #ff6a50;
    height: 60px;
    width: 60px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.miniLogo{
    height: 40px;
    width: 40px;
}

.cursoContainer{
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    height: auto;
}

.curso{
    width: 300px;
    margin-left: 10px;
    height: 300px;
}

/* Aqui vienen las cards */

.waveContainer{
    background-color: #f7c7bd;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 400px;
    height: 300px;
    height: auto;
}

.info{
    font-size: 40px;
}

.waveLi{
    font-size: 23px;
}

.waveImg{
    width: 100%;
}

/* Aqui van los "testimonios" */

.testimonioContainer{
    width: 100%;
    margin-top: 100px;
    display: flex;
    justify-content: center;
}

.testimonialsContainer{
    width: 90%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.testimonialsTitle{
    font-size: 30px;
}

.testimonialsFlex{
    display: flex;
    width: 100%;
    justify-content: center;
}

.testimonial{
    background-color: #fcebeb;
    width: 35%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 10px;
    border: solid 1px black;
}

.testimonialImg{
    width: 100px;
    height: 100px;
    border-radius: 100%;
}

.testimonialText{
    padding-left: 8px;
}

/* aqui va lo de las preguntas frecuentes */

.preguntasFrecuentes{
    width: 100%;
    margin-top: 100px;
    padding-bottom: 10px;
    background-color: rgb(255, 234, 234);
    display: flex;
    justify-content: center;
}

.faqTitle{
    font-size: 35px;
}

.titleItem{
    font-size: 22px;
}

.faqContainer{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.faqItem{
    border-bottom: solid 1.5px black;
    width: 70%;
}

.parrafoFaq{
    font-size: 18px;
}

/* Aqui va el wave */


.footerContainer{
    background-color: aliceblue;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footerChild{
    width: 30%;
    padding: 10px;
}

.footerInfo{
    display: flex;
    color: black;
}

.miniLogoFooter{
    width: 30px;
    height: 30px;
    margin-top: 20px;
    margin-right: 10px;
}

.flexFooter{
    display: flex;
}

/* Aqui va el footer */


.buttonContact:hover{
    cursor: pointer;
    background-color: beige;
    transition: 0.3s;
}

.linkChild:hover{
    cursor: pointer;
    color: #ff6a50;
    transition: 0.3s;;
}

/* Pseudo clases */


@media(max-width: 1024px){
    .banner{
        width: 400px;
        height: 400px;
        border-radius: 100%;
    }

    h1{
        font-size: 30px;
    }
}

 @media(max-width: 860px) {
    body, html {
        width: 100%;
        overflow-x: hidden;
        margin: 0; /* Agregado para eliminar cualquier margen que pueda afectar el ancho */
        padding: 0; /* Agregado para eliminar cualquier padding que pueda afectar el ancho */
    }

    .burgerbtn {
        display: block;
        margin-top: 20px;
        margin-right: 10px;
        width: 20px;
        height: 20px;
    }
    
    .home, .aboutUs, .contacts {
        display: none;
    }
    
    .nav {
        width: 100%;  /* Asegúrate de tener width 100% */
        padding: 0;  /* Elimina padding */
        margin: 0 auto;  /* Centra el contenido si es necesario */
        box-sizing: border-box;  /* Incluye padding y border en el width */
    }

    h1 {
        font-size: 30px;
    }

    .description {
        font-size: 15px;
    }

 
    .bannerContainer {
        flex-direction: column;
        align-items: center;
    }

    .bannerContainerChild {
        width: 80%;
    }

    .buttonContact{
        width: 150px;
        height: 30px;
    }
 
    .bannerSecondChild {
        width: 70%;
    }

    .bannerContainerChild1{
        margin-top: 40px;
        width: 80%;
    }

    .banner {
        width: 100%;
        height: auto;
        border-radius: 0px;
    }
 
    .cardsContainer {
        margin-top: 100px;
        height: auto;
    }
 
    .cardsChild {
        flex-direction: column;
        align-items: center;
    }
 
    .card {
        width: 50%;
        margin-top: 10px;
        height: auto;
    }
 
    .workingContainer {
        width: auto;
        height: auto;
        margin-top: 100px;
    }
 
    .working {
        height: 500px;
        width: 500px;
    }
 
    .working1 {
        width: 70%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        font-size: 18px;
    }

    .info {
        font-size: 20px;
    }

    .waveContainer {
        margin-top: 50px;
    }

    .waveLi {
        font-size: 18px;
    }

    .cursoContainer {
        flex-direction: column;
        align-items: center;
    }

    .curso {
        margin-top: 20px;
        margin-left: 0px;
        width: 75%;
        height: 250px;
    }

    .testimonialsFlex{
        flex-direction: column;
        align-items: center;
    }

    .testimonial{
        width: 200px;
        height: auto;
        margin-top: 5px;
    }

    .faqTitle{
        font-size: 20px;
    }

    .titleItem{
        font-size: 15px;
    }

    .parrafoFaq{
        font-size: 15px;
    }

    .footerContainer {
        margin-top: 0px;
        flex-direction: column;
        align-items: center;
    }

    .footerChild {
        width: 300px;
    }

    .flexFooter{
       width: 100%;
       justify-content: space-between;
    }
}

/* Aqui va las media querys */
