
/* Acá empieza el nav */

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;
}

ul{
    display: flex;
}

li{
    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;
}


/* Acá empieza el main */

.bannerContainer{
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

.description{
    font-size: 19px;
}

.banner{
    width: 500px;
}

.bannerFirstChild{
    /* background-color: purple; */
    display: flex;
    justify-content: center;
    width: 50%;
    height: 600px;

}

.bannerSecondChild{
    /* background-color: rgb(204, 13, 204); */
    width: 45%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    text-align: justify;
}

/* -------------------lo de arriba es nav y banner--------------------- */


.cardsContainer{
    margin-top: 100px;
    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;
}


/* --------------lo de arriba es de las cards-------------- */

.workingContainer{
    margin-top: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.working{
    margin-top: 100px;
    height: 600px;
    width: 700px;
}

.working1{
    width: 70%;
}

.solutions{
    font-size: 40px;
    display: flex;
    justify-content: center;
}

/* 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;
}


/* ----------------------------footers------------------------- */

.footerContainer{
    background-color: aliceblue;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footerChild{
    width: 30%;
    padding: 10px;
    /* background-color: red; */

}

.footerInfo{
    display: flex;
    color: black;
}

.miniLogoFooter{
    width: 30px;
    height: 30px;
    margin-top: 20px;
    margin-right: 10px;
}

.flexFooter{
    display: flex;
}

/* Pseudo clases */

li:hover{
    cursor: pointer;
    color: #ff6a50;
    transition: 0.3s;;
}

.burgerbtn:hover{
    cursor: pointer;
}

/* media querys */

@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;
    }

    h1 {
        font-size: 30px;
    }

    .description {
        font-size: 15px;
    }

    .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 */
    }

    .bannerContainer {
        flex-direction: column;
        align-items: center;
    }

    .bannerSecondChild{
    width: 90%;
    font-size: 20px;
    height: auto;
    margin-top: 120px;
    }

    .bannerFirstChild{
        width: 100%;
        height: auto;
    }

    .banner{
    width: 80%;
    height: 350px;
    }

    .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: 30px;
        /* background-color: red; */
    }

    .working{
        width: 90%;
        height: 90%;
    }

    .working1 {
        width: 70%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        font-size: 18px;
    }

   .solutions{
    font-size: 30px;
   }

    .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;
    }
}