@charset "utf-8";

@font-face {
    font-family: "Quicksand";
    src: url("../FONTS/quicksand/Quicksand-VariableFont_wght.ttf");
}

@font-face {
    font-family: "Quicksand-bold";
    src: url("../FONTS/quicksand/static/Quicksand-Bold.ttf");
}

@font-face {
    font-family: "Nunito-regular";
    src: url("../FONTS/Nunito/Nunito-Regular.ttf");
}

@font-face {
    font-family: "Nunito-bold";
    src: url("../FONTS/Nunito/Nunito-Bold.ttf");
}

:root {
    --gray1: #707070;
    --blue1: #005fae;
    --blue2: #3194D2;
    --orange: #fbb040;
    /*color: var(--gray1);*/
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
    text-decoration: none;
    color: var(--gray1);
}


/* css general */


.borderRadius {
    border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
}

.borderRadiusInput {
    border-radius: 21px;
    -moz-border-radius: 21px;   
    -webkit-border-radius: 21px;
}

.generalShadow {
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}


body{
    width: 100%;
    height: 100%;
    background-color: #F8F8F8;
    background-size: auto 100vh;
    overflow-x: hidden;
    -webkit-user-select: none;  /* Safari */
    -moz-user-select: none;     /* Firefox */
    -ms-user-select: none;      /* Internet Explorer/Edge */
    user-select: none;  
}

/* ---------- header ----------------- */


.marignHeader{
    height: 110px;
}


/*---------------- Slider e información del heroe -------------------- */

.widthSlider{
    width: 100vw;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
}


.widthSlider::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    pointer-events: none; 
}

.containerSlider{
    display: flex;
    width: 300%;
    height: 100%;
    /* background-color: #000; */
    /* transition: opacity 2s; */
}

.imgSlider{
    width: 100vw;
    height: 100%;
    object-fit: cover;
    object-position: top;
    opacity: 0;
    transition: opacity 1s  ease-out;
}


.containerHero{
    position: relative;
    height: 100vh;
    z-index: 5;
}

.infoSlider{
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 40px;
}

.infoSlider .titleHero{
    color: #FFFFFF;
    font-size: 65px;
    text-align: center;
}

.infoSlider .subtitleHero{
    color: #FFF;
    font-size: 40px;
    text-align: center;
}
.infoSlider .descriptionHero{
    color: #FFF;
    font-size: 20px;
    text-align: center;
}

.buttonsHero{
    position: absolute;
    bottom: 0;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    max-width: 1280px;
}

.iconSliderLeft{
    position: absolute;
    z-index: 5;
    width: 48px;
    left: 2%;
    right: auto;
    top: 50%;
    transform: translatey(-50%);
    cursor: pointer;
}

.iconSliderRight{
    position: absolute;
    z-index: 5;
    width: 48px;
    right: 2%;
    top: 50%;
    transform: translatey(-50%);
    cursor: pointer;
}


.optionsHero{
    background-color: #FFFFFF;
    padding: 15px;
    margin: 10px;
    margin-bottom: 30px;
    min-width: 180px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.optionsHeroUnete{
    background-color: #09a63f;
    padding: 15px;
    margin: 10px;
    margin-bottom: 30px;
    min-width: 180px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.optionsHero p {
    color: #005fa3;
    font-size: 18px;
    font-family: "Nunito-bold";
    text-align: center;
    width: 100%;
}

.optionsHeroUnete p {
    color: #FFF;
    font-size: 18px;
    font-family: "Nunito-bold";
    text-align: center;
    width: 100%;
}

@media screen and (max-width: 800px){
    /* .buttonsHero{
        display: none;
    } */
    .optionsHero{
        width: 30%;
        min-width: 30%;
        margin: 10px 0;
    }
    .optionsHeroUnete{
        width: 30%;
        min-width: 30%;
        margin: 10px 0;
    }
    .optionsHero p{
        font-size: 14px;
    }
    .optionsHeroUnete p {
        font-size: 14px;
    }
    .widthSlider{
        height: 70vh;
    }

    .infoSlider{
        padding: 10%;
        padding-top: 100px;
        height: calc(70vh + 50px);
    }

    .containerHero{
        height: 70vh;
    }

    .infoSlider .titleHero{
        font-size: 40px;
    }
    .infoSlider .subtitleHero{
        font-size: 30px;
    }
    .infoSlider .descriptionHero{
        font-size: 20px;
    }

}


/* ---------------- Seccion de quienes somos  --------------------------*/

.weAreSection{
    max-width: 1280px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
}


.containerWeAre{
    padding: 0 40px 40px;
    width: 100%;
    display: flex;
}

.titleWeAreSection{
    text-align: center;
    font-size: 45px;
    color: #3194d2;
    margin: 0 0 20px;
}

.imgWeAre{
    width: 50%;
    left: 2.5%;
    position: relative;
    max-height: 350px;
    object-fit: cover;
}

.imgWeAre::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    pointer-events: none; 
}

.contentTextWeAre{
    width: 60%;
    left: -2.5%;
    position: relative;
    bottom: -45px;
    background-color: #FFF;
    padding: 20px 27px;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.descriptionWeAre{
    font-size: 18px;
    line-height: 27px;
    text-align: justify;
    margin: 0 0 20px;
}

.buttonWeAre{
    padding: 10px 15px;
    width: max-content;
    font-size: 20px;
    color: #3194d2;
    font-family: "Nunito-bold";
}

@media screen and (max-width: 800px){
    .weAreSection{
        margin-bottom: 0;
    }

    .containerWeAre{
        flex-direction: column;
        padding: 0;
    }
    
    
    .imgWeAre{
        width: 100%;
        left: 0;
    }

    .contentTextWeAre{
        width: 90%;
        left: 5%;
        bottom: 45px;
    }

    .titleWeAreSection{
        font-size: 30px;
    }
}


/*-------------------- Sección de productos --------------------------*/

.viewProducts{
    display: flex;
    flex-direction: column;
    margin: auto;
    justify-content: center;
    align-items: center;
    padding: 68px 60px;
    row-gap: 30px;
    background-color: #3194d2;
    background-image: url('../IMAGES/asociaciones/productos-web.jpg');
    height: 250px;
    background-position: center;
    background-size: cover;
    position: relative;
}

.viewProducts::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    pointer-events: none; 
}

.containerViewProducts{
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 31px;
    position:relative;
}



.titleViewProducts{
    font-size: 40px;
    color: #FFF;
    text-align: center;
}

.buttonViewProducts{
    padding: 10px 15px;
    width: max-content;
    font-size: 20px;
    font-family: "Nunito-bold";
    color: #3194d2;
    background-color: #FFFFFF;
}

@media screen and (max-width: 1024px){
    .buttonViewProducts{
        font-size: 18px;
    }

    .viewProducts{
        padding: 30px 5%;
    }
}

@media screen and (max-width: 800px){
    .titleViewProducts{
        font-size: 35px;
    }
}


@media screen and (max-width: 600px){
    .titleViewProducts{
        text-align: center;
        font-size: 30px;
    }

    .buttonViewProducts{
        font-size: 16px;
    }
}


/*-------------------------- Sección Proyectos ------------------------*/
.viewProyects{
    display: flex;
    flex-direction: column;
    max-width: 1280px;
    margin: auto;
    justify-content: center;
    align-items: center;
    padding: 40px;
    row-gap: 30px;
}

.titleViewProyects{
    font-size: 40px;
}

.containerCardsProyects{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    column-gap: 20px;
    row-gap: 40px;
    flex-wrap: wrap;
}

.cardsProyects{
    width: 95%;
    max-width: 250px;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.37);
    -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.37);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.37);
    border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
    /* min-width: 250px; */
}

.imgCard{
    width: 100%;
    height: 140px;
    border-radius: 15px 15px 0px 0px;
}

.titleCards{
    color: #3194D2;
    font-weight: bold;
    text-align: center;
    font-size: 18px;
    width: 90%;
    margin-bottom: 15px;
    margin-top: 15px;
}

.descriptionCard{
    font-size: 16px;
    color: #707070;
    text-align: justify;
    overflow: hidden;
    width: 90%;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    height: calc(1.3em * 3);
    text-align: center;
    word-break: break-word;
}

.buttonMore{
    padding: 10px 15px;
    width: max-content;
    font-size: 20px;
    color: #3194d2;
    font-family: "Nunito-bold";
    cursor: pointer;
    background-color: #FFFFFF;
}

@media screen and (max-width: 480px){
    .viewProyects{
        padding: 40px 5%;
    }

    .titleViewProyects{
        font-size: 30px;
        text-align: center;
    }
}


/*-.--------------------- Metricas ----------------------------*/

.viewMetrics{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: auto;
    justify-content: center;
    align-items: center;
    padding: 30px 60px;
    row-gap: 30px;
    background-color: #3194d2;
    background-image: url('../IMAGES/asociaciones/tiburcios.jpg');
    position: relative;
    min-height: 250px;
}

.viewMetrics::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.containerMetrics{
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    max-width: 1280px;
    position: relative;
}

.metrics{
    display: flex;
    column-gap: 15px;
    align-items: center;
    /* max-width: 30%; */
}

.metrics img{
    width: 70px;
    height: 70px;
    object-fit: contain;
    max-width: 40%;
}

.infoMetric{
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    /* max-width: 60%; */
}

.titleMetrics{
    color: #FFF;
    font-size: 25px;
    font-family: "Nunito-bold";
}
.resultMetrics{
    color: #FFF;
    font-size: 20px;
    font-family: "Nunito-regular";
}


@media screen and (max-width: 1000px){
    .viewMetrics{
        padding: 30px 5%;
    }

    .metrics img {
        width: 62px;
        height: 62px;
    }

    .containerMetrics {
        justify-content: space-between;
    }

    .infoMetric{
        row-gap: 5px;
    }

    .titleMetrics {
        font-size: 20px;
    }

    .resultMetrics {
        font-size: 15px;
    }
}


@media screen and (max-width: 650px){

    .metrics{
        flex-direction: column;
        justify-content: start;
        width: 32%;
        align-items: center;
        row-gap: 12px;
    }

    .metrics img {
        width: 100%;
    }

    .infoMetric{
        row-gap: 5px;
        max-width: 100%;
    }
    .titleMetrics{
        width: 100%;
        text-align: center;
        word-break: break-word;
    }
    .resultMetrics{
        text-align: center;
        width: 100%;
        word-break: break-word;
    }
}

@media screen and (max-width: 580px){
    .containerMetrics{
        flex-wrap: wrap;
        row-gap: 30px;
        justify-content: center;
        min-width: 50%;
        max-width: 100vw;
        width: auto;
    }

    .metrics{
        max-width: 50%;
        width: 50%;
        align-items: center;
        justify-content: start;
    }

    .titleMetrics{
        font-size: 18px;
    }
    
    .resultMetrics{
        font-size: 14px;
    }
}

@media screen and (max-width: 380px){
    .metrics{
        width: 100%;
        max-width: 100%;
    }
}


/* ------------------------- testimonios ----------------------------*/
.testimonials{
    display: flex;
    flex-direction: column;
    max-width: 1280px;
    margin: auto;
    justify-content: center;
    align-items: center;
    padding: 40px;
    row-gap: 30px;
}

.titleTestimonials{
    font-size: 40px;
}

.containerCardTestimonials{
    width: 100%;
    max-width: 1280px;
    display: flex;
    justify-content: space-around;
    align-self: center;
    flex-wrap: wrap;
    row-gap: 30px;
    column-gap: 30px;
}

.cardTestimonials{
    width: 90%;
    max-width: 300px;
}

.cardInfoTestimonial{
    padding: 20px 20px 41px 20px;
    background-color: #FFF;
    text-align: center;
    height: 250px;
    overflow: hidden;
}

.infoUserTestimonial{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -40px;
}

.imgCardTestimonial{
    width: 80px;
    height:80px;
    clip-path: circle(50%);
    object-fit: cover;
}

.nameUSerTestimonial{
    color: #333;
    font-size: 18px;
    font-family: "nunito-bold";
}

.typeUSerTestimonial{
    font-size: 16px;
    color: #707070;
}


/*-------------------------- Contactanos --------------------------*/

.sectionContact{
    padding: 0 60px;
    row-gap: 30px;
    background-color: #3194d2;
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
    background-image: url('../IMAGES/asociaciones/pescandoPlaya.jpg');
    background-position: center;
    background-size: cover;
    position: relative;
}

.sectionContact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    pointer-events: none; 
}

.containerInfoContact{
    width: 1280px;
    display: flex;
    justify-content: center;
    column-gap: 2%;

}

.infoContact{
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 30px;
    width: 50%;
    position: relative;
}

.infoContact h2{
    color: #FFFFFF;
    font-size: 35px;
    line-height: 46px;
}

.infoContact p{
    color: #FFF;
    font-size: 20px;
}

.formContact{
    width: 35%;
    background-color: #FFF;
    position: relative;
    bottom: -60px;
    padding: 2% 3% 1%;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    min-width: 400px;
}

.titleForm{
    text-align: center;
    font-size: 30px;
}

.nameInput{
    margin-bottom: 5px;
    font-size: 18px;
    font-family: "Nunito-bold";
    color: #A2A2A2;
}

.inputQuestion{
    width: 100%;
    padding: 10px;
    border-radius: 15px;
    border: 0;
    /* color: #3194d2; */
    background-color: #FFFFFF;
    outline: none;
    appearance: textfield;
}

.inputForm{
    width: 100%;
}

.flexInput{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.flexInput .inputForm{
    width: 46%;
}

.buttonForm{
    width: max-content;
    padding: 10px 20px;
    margin-top:10px;
    background-color: #3194d2;
    color: #FFFFFF;
    font-family: "Nunito-bold";
    border: 0;
    font-size: 18px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}

.textWarning{
    text-align: center;
    font-size: 14px;
    margin-top: -12px;
    margin-bottom: -5px;
    color: rgb(240, 77, 40);
    display: none;
}

@media screen and (max-width: 1200px){
    .formContact {
        width: 45%;   
    }

    .nameInput{
        font-size: 16px;
    }
}

@media screen and (max-width: 1024px){
    
}

@media screen and (max-width: 800px){
    .sectionContact{
        padding: 0 5%;
        margin-bottom: 30px;
    }
    .containerInfoContact{
        flex-direction: column;
        padding: 20px 0;
        row-gap: 22px;
    }

    .infoContact{
        width: 100%;
        text-align: center;
    }

    .formContact{
        width: 85%;
        padding-bottom: 21px;
        padding-top: 21px;
        margin: auto;
        bottom: 0;
        min-width: 100%;
    }


}

@media screen and (max-width: 600px){
    .infoContact{
        row-gap: 15px;
    }

    .infoContact h2{
        font-size: 30px;
        line-height: inherit;
    }

    .formContact{
        width: 100%;
    }

    .flexInput{
        flex-direction: column;
        row-gap: 20px;
        justify-content: center;
        align-items: center;
    }
    
    .inputForm{
        width: 90%;
    }

    .flexInput .inputForm{
        width: 90%;
    }

}


@media screen and (max-width: 480px){
    .infoContact h2{
        font-size: 20px;
    }

    .infoContact p{
        font-size: 16px;
    }

}
