@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    
}

:root{
    --border: 16px;
    --container-width: 1080px;
    --border-mobile: 16px;
    --primary: #10A0A0;
    --primary-300: #089191;
    --primary-700: #74F1F1;
    --grey: #3B4449;
    --border-green: #D3F4F4;
}

html{
    scroll-behavior: smooth;
}

body{
    width: 100%;
    background-color: #FFF;
    display: grid;
    place-content: center;

    padding-top: 20px;

    font-family: 'Inter', sans-serif;
    font-style: normal;
    color: #202020;
}

h1{
    font-size: 48px;
    line-height: 40px;
    font-weight: 700;

}


h2{
    font-size: 26px;
    line-height: 26px;
    font-weight: 700;

}

h4{
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
}


h5{
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
}

h6{
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
}

p{
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;

}
.web_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    max-width: var(--container-width);

}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    position: fixed;
    top: 0;
    background-color: white;
    z-index: 3;
    width: 100%;
    height: 100px;
    padding: 10px 0px;
    transition: 0.6s;
}

.navbar.sticky{
    background-color: #ffffff;
    height: 50px;
}

.navbar.sticky .navbar_logo-container img{
    height: 30px;
    transition: 0.6s;
}

.navbar.sticky .btn{
    height: 44px;
    transition: 0.6s;

}

.navbar .navbar-list{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    height: 60px;

    list-style-type: none;
}

.primary-color-text{
    text-decoration: none;
    color: var(--primary-300);
    font-weight: 700;
}

.navbar_logo-container{
    display: flex;
    justify-content: center;
}

.navbar_logo-container img{
    height: 60px;
    transition: 0.6s;

}

.navbar_contenido{
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 10px;
    gap: 40px;

    width: 450px;
    height: 44px;
}

.navbar_contenido h6{
    font-weight: 700;
    color: #FF560B;
}

.section{
    width: 100%;
    padding: 40px 0;
}

.banner_container{
    display: flex;
    width: 100%;
    position: relative;
}

.banner_1, .banner_2, .banner_3{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    gap: 45px;
    height: 450px;
    width: 100%;
    background-size: cover !important;
    background-position: center !important;
    border-radius: var(--border-mobile);
}

.banner_1{
    background: url("img/Banner-imagen-01.png");
}
.banner_2{
    background: url("img/Banner-imagen-02.png");
}
.banner_3{
    background: url("img/Banner-imagen-03.png");
}

.banner-title{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    text-align: center;

    width: auto;
    color: white;
}

.banner-title h3{
    font-size: 24px;
    line-height: 24px;
    font-weight: 400;
}

.logo-blanco{
    width: 50px;
    height: min-content;
    position: absolute;
    right: 15px;
    top: 15px;
}


.banner_buttons{
    display: flex;
    align-items: center;
    gap: 15px;

}

.banner_buttons .primary-btn{
    width: 100%;
}
section{
    scroll-margin-top: 120px;
}

.section-01{
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-top: 80px !important;
}

.section-02{
    display: flex;
}

.section-03{
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
    width: 100%;
}

.agenda{
    display: flex;
    flex-direction: column;
    gap: 10px;
}




.titulo-bajada{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.titulo-naranja{
    color: #FF560B;
}

.horario {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    gap: 20px;
    height: 94px;
    background: var(--grey);
    border: 1px solid #202020;
    /* box-shadow: 0px 10px 20px rgba(16, 160, 160, 0.15); */
    border-radius: 16px;
    width: 100%;
}

.horario-texto{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;

    width: max-content;
}

.logo-texto{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 20px;

    width: auto;
}

.logo-texto img{
    height: 50px;
}

.logo-texto p{
    color: white;
}

.logo-texto h4{
    color: var(--primary-700);
    font-weight: 700;
}
.servicios_container{
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    
}

.servicios_container h2{
    color: var(--primary-300);
}

.servicios{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 45px;
    row-gap: 15px;
    
}


.servicios .item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 15px 10px 15px 20px;
    /* background-color: #D3F4F4; */
    background-color: var(--primary);
    width: 100%;
    border-radius: 15px;
    box-shadow: 0px 6px 15px rgba(16, 160, 160, 0.15);
    
}

.servicios>.item>p{
    font-weight: 700;
    color: #fff;
    width: 100%;
}

.servicios .item p :after{
    content: "hola";
}


.servicios .item img, .servicios .item svg {
    width: 60px;
    fill: #fff;
}

.nosotros{
    display: flex;
    align-items: flex-start;
    padding: 0px;
    gap: 40px;
}



  
.nosotros img{
    border-radius: var(--border-mobile);  
    width: 100%;  
}

.nosotros-texto{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
}

.mision__container{
    display: flex;
    gap: 20px;
}

.mision__container h3{
    color: var(--primary-300);
}

.mision, .vision, .valores{
    /* background-color: #F0FFFF; */
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 15px;
    border-radius: var(--border-mobile);
    border: 1px solid var(--primary);
}

.valores ul{
    margin-left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.titulo-bajada h2{
    color: var(--primary-300)
}

.atendidos{
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.atendidos h3{
    color: var(--primary);
    font-size: 32px;
    line-height: 32px;
}


.atendidos h4{
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: var(--grey);
}


.atendidos p{
    color: var(--primary);
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
}


.items-container{
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.item{
    display: flex;
    gap: 10px;
    width: calc(50% - 20px);
}


.item img{
    width: 16px;
}

.contactanos, .visitanos{
    width: 100%;
}

.visitanos{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.map{
    border-radius: var(--border-mobile);
    border: 1px solid var(--border-green);
    width: 100%;
}

.contactanos{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    height: max-content;
}

.formulario{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
}

.formulario .input, .formulario .text-area{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 15px;
    background: #FFFFFF;
    border: 1px solid var(--border-green);
    border-radius: 10px;
}

.formulario .input{
    height: 45px;
}

.formulario .text-area{
    height: 140px;
}

footer{
    display: flex;
    justify-content: center;
    width: 100vw;
    background-color: #F0FFFF;
    overflow: visible;
    padding: 20px 0;
}

.footer-container{
    width: 100%;
    max-width: var(--container-width);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0px;
    gap: 40px;

}

footer .logos-footer{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

footer .logo-footer{
    height: 60px;
    
}

footer .logo-sanitaria{
    height: 90px;
}

.social-media__container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}

.social-media__container .detalle{
    display: flex;
    flex-direction: column;
}

.social-media__container .detalle img{
    height: 80px;
    padding-top: 8px;
}

.follow-us__container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
}

.social-media__icons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social-media__container>a, .navbar_contenido>a{
    text-decoration: none;
}

.footer-creadores{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hecho-por{
    display: flex;
    gap: 4px;
    
}

.primary-text{
    color: var(--primary-300);
    font-weight: 700;
}

.hecho-por a{
    color: var(--grey);
    text-decoration: none;
}
.footer-info{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0px;
    gap: 30px;
}

.footer-info .detalle{
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: right;
}

.btn{
    height: 48px;
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    text-decoration: none;
    cursor: pointer;
    width: max-content;
    transition: 0.6s;

}

.primary-btn{
    background-color: var(--primary);
    color: #FFFFFF;
    border: none ;
    filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.15));

}

.whatsapp-btn{
    background-color: #25D366;
    color: #FFFFFF;
    border: none ;
    padding: 0 16px !important;
    gap: 8px !important;
    filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.15));
}

.whatsapp-btn:hover{
background-color: #128C7E;
filter: drop-shadow(0px 7px 25px rgba(0, 0, 0, 0.3));

}



.primary-btn:hover{
    background: var(--primary-300);
}

.alt-btn{
    background: #F0FFFF;
    border: 1px solid rgba(59, 68, 73, 0.15);
    color: var(--grey);

}

.alt-btn:hover{
    background: #E5FFFF;
}

.blue-text{
    color: #3A3A8B;
}

.navbar .icon {
    display: none;
    width: 48px;
    height: 48px;
    background-color: var(--grey);
    border-radius: 8px;
}

.boton-agendar{
    display: none;
}

.icon_chevron-left, .icon_chevron-right{
    width: 48px;
    height: 48px;
    position: absolute;
    top: calc(50% - 24px);
    display: grid;
    place-content: center;
    border-radius: 15px;
    border: none;
    background-color: #08919180;
    cursor: pointer;
    

}

.icon_chevron-left>img, .icon_chevron-right>img{
    width: 48px;
    height: 48px;
    color: white;
}

.icon_chevron-right{
    transform: rotate(180deg);
    right: 15px;
}

.icon_chevron-left{
    left: 15px;
}

.icon_chevron-left:hover, .icon_chevron-right:hover{
    background-color: #089191f1;
}

.fonasa{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 50px 15px;
    padding-bottom: 120px !important;

}

.fonasa img{
    width: 180px;
}

.fonasa p{
    max-width: 600px;
    text-align: center;
}



@media (max-width: 500px){
    :root{
        --border: 0px;
        --container-width: 500px;
        --padding-mobile: 15px;
        --padding-mobile-lg: 40px 15px;
        --border-mobile: 15px;
    }

    h1{
        font-size: 40px;
        line-height: 40px;
        font-weight: 700;
    
    }

    h2{
        font-size: 30px;
        line-height: 30px;
        font-weight: 700; 
    }

    .section-01{
        padding: var(--padding-mobile);
    }
    .section-02, .section-03{
        display: flex;
        flex-direction: column;
    }

    .navbar-list{
        flex-direction: column;
    }

    .banner{
        height: 450px;
        padding: var(--padding-mobile);
        border: 1px solid #FEEACD;
    }
    .banner-title{
        width: 100%;
        text-align: left;
        align-items: flex-start
    }

    .banner-title h1{
        width: 240px;
    }

    .banner-title h5{
        width: 200px;
    }

    .banner_buttons{
        flex-direction: column;
        width: 100%;
    }
    .banner_buttons a{
        width: 100%;
    }

    .nosotros, .horario, .visitanos{
        padding: var(--padding-mobile-lg);
    }

    .nosotros{
        flex-direction: column;
        width: 100%;
    }

    .nosotrs img{
        border: var(--border-mobile);
        max-width: 450px;
    }

    .nosotros-texto{
        gap: 30px;
    }

    .horario{
        flex-direction: column;
        height: auto;
    }

    .horario .logo-texto{
        flex-direction: column;
    }

    .horario a{
        width: 100%;
    }

    .horario-texto{
        width: fit-content;
        text-align: center;
    }

    .items-container{
        flex-direction: column;
    }

    .item{
        width: 100%;
    }
    .servicios{
        padding: var(--padding-mobile-lg);
    }

    .visitanos, .ubicacion, .nosotros{
        padding: 0px 16px;
    }

    .contactanos{
        padding: var(--padding-mobile-lg);
    }

    footer, .footer-container{
        flex-direction: column-reverse;
        align-items: center;
        padding: var(--padding-mobile-lg);

    }

    .footer-info, .detalle, .footer-creadores{
        align-items: center;
    }
    .follow-us__container, .phone-numbers__container{
        gap: 15px;
    }

    .phone-numbers__container, .numbers, .social-media__container, .follow-us__container{
        align-items: center;
    }

    .navbar{
        padding: 16px;
    }

    header{
        justify-content: center !important;
    }
    .navbar-list{
        display: none !important;
        flex-direction: row;
        gap: 10px !important;
        padding: 0px !important;
    }

    .boton-agendar{
        display: grid;
        place-content: center;
        width: 100%;
        padding: 10px;
        position: fixed;
        bottom: 0;
        left: 0;
    }

    .boton-agendar .btn{
        height: 56px;
        border-radius: 16px;
        width: 300px;
    }

    .icon_chevron-left, .icon_chevron-right{
        top: calc(90% - 24px);
    }
    
    .mision__container{
        flex-direction: column;
        padding: 15px;
    }

    .servicios{
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .servicios_container{
        padding: 15px;
        gap: 15px;
    }

    .servicios{
        padding: 0;
    }

    .servicios .item{
        padding: 5px 15px 5px 5px;
    }
/* 
    .navbar a:not(:first-child) {display: none;}
    .navbar a.icon {
      float: right;
      display: none;
      place-content: center;
      text-decoration: none;
      color: white;
    }
        
    
    .navbar.responsive {position: relative;}
    .navbar.responsive .icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .navbar.responsive a {
      float: none;
      display: block;
      text-align: left;
    } */
}



