*{
    list-style: none;
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    font-family: "Lato", sans-serif;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}
body{
    overflow-x: hidden;
}
header{
    background-color: white;
    width: 100%;
    position: fixed;
    height: 100px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    z-index: 9;
    display: inline;
}
.head{
    display: flex;
    justify-content: space-between;
}
.solido{
    height: 100px;
    width: 100%;
}
.menu-bar img{
    height: 80px;
}
.logo-app img{
    height: 90px;
}
.telefono img{
    height: 35px;
    margin-right: 10px;
    margin-top: auto;
}
.col1{
    display: flex;
    flex-direction: column;
    margin-top: auto;
    display: flex;
    align-items: center;
    padding-right: 127px;
}
.col2{
    padding-left: 25px;
    padding-right: 25px;
}
.col3{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 25px;
    padding-top: 19px;
}
.idioma{
    width: auto;
    float: left;
    position: absolute;
    left: 0.5em;
    background: none;
}
ul{
    display: flex;
}
ul li{
    padding: 0 0.5em 0 0.4em;
    float: left;
    color: #ccc;
    text-transform: uppercase;
    font-weight: bold;
    list-style: none;
    font-size: 15.5px;
}

ul li:nth-child(1){
    border-right: 1px solid #1a1a1a;
}
.head-osarean{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.telefono{
    text-decoration: none;
    color: #2a2b7e;
    font-size: 12px;
    font-weight: 900;
    margin: 0;
    font-size: 130%;
    display: flex;
    justify-content: center;
}
.telefono-num{
    font-size: 130%;
    font-weight: 780;
}
.menu-bar label{
    cursor: pointer;
}

#menu-bar{
    display: none;
}
.container-menu{
    position: fixed;
    display: flex;
    flex-direction: column;
    background: rgba(0,0,0,0.5);
    height: 100vh;
    top: 0;left: 0;
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
}
.overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10;
}

#menu-bar:checked ~ .overlay{
    visibility: visible;
    opacity: 1;
}

#menu-bar:checked ~ .container-menu{
    opacity: 1;
    visibility: visible;
}
.cont-menu{
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    height: 100vh;
    position: fixed;
    transition: all 500ms ease;
    transform: translateX(-100%);
}
#menu-bar:checked ~ .container-menu .cont-menu{
    transform: translateX(0%);
}
.cont-menu nav{
    transform: translateY(5%);
}
.cont-menu nav a{
    display: block;
    text-decoration: none;
    font-size: 25px;
    font-weight: 450;
    padding: 15px;
    color: #1f205e;
    border-left: 5px solid transparent;
    transition: all 400ms ease;
}
.cont-menu nav a:hover{
    border-left: 5px solid #2a2b7e;
    background: #dfdfdf;
}
.cont-menu label{
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
    font-size: 40px;
    color: #000000;
}
.cont-menu .logo-app img{
    height: 120px;
    padding-left: 14px;
}
.cabecera{
    background: linear-gradient(to bottom, #24256d, #5051b4);
    height: auto;
    width: 100%;
    padding-bottom: 20px;
    padding-top: 30px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-bottom: 20px;
}
.cabecera-telefonos{
    background: linear-gradient(to bottom, #24256d, #5051b4);
    height: auto;
    padding-bottom: 20px;
    padding-top: 20px;


    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.cabecera-enlaces{
    background: linear-gradient(to bottom, #24256d, #5051b4);
    height: auto;
    padding-bottom: 20px;
    padding-top: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
h1{
    max-width: 95%;
    color: #9797ce;
    font-size:43px;
    font-weight: bolder;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
hr{
    width: 100%;
    height: 2px;
}
.texto-cabecera{
    width: 60%;
    color: white;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
}
button{
    display: inline-block;
    width: 190px;

    padding: 12px;
    border: none;
    border-radius: 25px;
    background-color: #92a8b4; 
    color: #2a2b7e;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
}
.enlaces{
    margin-top: 20px;
    width: 100px;
}
.select-btn{
    position: absolute;
    bottom: 20px;
}
button:hover{
    background-color: #798d97;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}
button::after{
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.info-txt{
    display: none;
    margin-bottom: 10px;
    width: 60%;
    color: white;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
}
.subtitulo{
    margin-top: 70px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.estilo-subtitulo{
    font-weight: 700;
    font-size: 30px;
    justify-content: center;
    align-items: center;
    width: 85%;
    text-align: center;
    color: #8e8ec7; 
}
.osarean{
    font-size: 30px;
}
.inicio{
    color: #2a2b7e;
}
.selector-pla{
    background: linear-gradient(to bottom, #24256d, #5051b4);
    height: 500px;
    width: 25%;
    margin: 10px;
    border-radius: 25px;
    padding: 15px;
    gap: 35px;
    scroll-behavior: smooth;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;

    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: top;
}
.diarrea-img{
    height: 220px;
    position: absolute;
    bottom: 70px;
}
.fiebre-img{
    height: 200px;
    position: absolute;
    bottom: 80px;
}
.resfriado-img{
    height: 200px;
    position: absolute;
    bottom: 70px;
}
.nauseas-img{
    height: 230px;
    position: absolute;
    bottom: 50px;
}
h3{
    color: white;
    font-size: 32px;
    text-align: center;
    font-weight: bolder;
    margin-top: 20px;
}
.texto-selector{
    width: auto;
    color: white;
    font-size: 15px;
    text-align: center;
    margin-top: -20px;
}
.texto-subtitulo{
    width: 85%;
    color: rgb(255, 255, 255);
    font-weight: 400;
    font-size: 15px;
    text-align: center;
}
.texto-guia{
    width: 85%;
    color: #2a2b7e;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
}
.texto-PLA{
    width: 85%;
    color: #2a2b7e;
    text-align: center;
    margin-top: 10px;
}
.cabecera3{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
.telefono-txt{
    text-decoration: none;
    color: white;
    font-size: 180%;
    font-weight: bold;
    margin-top: -20px;
    margin-bottom: 15px;
    text-decoration: underline;
}
.container-pla{
    display: flex;
    margin-bottom: 30px;
}
.pla-autokudeatu{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #2a2b7e;
    margin: auto;
    padding: auto;
    width: 70%;
    height: auto;
    border-radius: 14px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}
.ver-btn{
    width: 100px;
}
footer{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #333;
    color: white;
    padding: 20px 30px;
    width: 100%;
}
.pie{
    margin-top: 15px;
}
.unamuno{
    width: 300px; 
    height: auto;
    margin-right: 60px;
}
.bplus-img{
    width: 75px;
}
@media(max-width: 850px){
    .head-osarean{
        display: none;
    }
    .telefono img{
        height: 55px;
    }
    .col1{
        padding-right: 0px;
    }
    .container-pla{
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
    }
    .selector-pla{
        width: 350px;
        flex: 0 0 auto;
        scroll-snap-align: center;
    }
    .texto-cabecera{
        width: 95%;
    }
    .info-txt{
        width: 95%;
    }
    .bplus-img{
        height: 50px;
        width: 50px;
    }
    .unamuno{
        width: 210px;
    }
}
