/* General */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/* Barra de navegacion */
nav {
    width: 100%;
    height: 45px;
    display: flex;
    justify-content: center;
    z-index: 20;
    position: fixed;
    top: 0;
    background-color: #334D35;
}

.contenedor-boton-hamburguesa {
    display: none;
    width: 50%;
    height: 100%;
}

.boton-hamburguesa {
    width: 35px;
    height: 35px;
    margin-top: 7.5px;
    cursor: pointer;
    margin-left: 5px;
}

.contenedor-vacio-inicio, .contenedor-vacio-final {
    width: 1%;
    height: 100%;
}

.contenedor-secciones {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.contacto {
    border-bottom: #fff solid 2px;
}

.contenedor-secciones > ol {
    display: flex;
    justify-content: center;
}

.contenedor-secciones > ol > li {
    list-style-type: none;
    margin-left: 30px;
    font-family: sans-serif;
    margin-top: 16.5px;
    font-size: 12px;
}

.contenedor-secciones > ol > li > a {
    position: relative;
    text-decoration: none;
    color: #fff;
    padding-bottom: 4px;
}

.contenedor-secciones > ol > li > a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.contenedor-secciones > ol > li > a:hover::after {
    width: 100%;
}

.contenedor-secciones > ol > li > a.contacto {
    border-bottom: 2px solid #fff;
}

.contenedor-secciones > ol > li > a.contacto::after {
    content: none;
}

.contenedor-secciones > ol > li > a:hover {
    color: #ccc;
}

.logo {
    width: 105px;
    height: 40px;
    border-radius: 5px;
    margin-top: 2.5px;
    margin-left: 30px;
}

.contenedor-secciones-menu, .contenedor-img-logo-menu, .contenedor-logo-menu-cerrado {
    display: none;
}

.contenedor-logo-menu-cerrado {
    width: 50%;
    height: 100%;
}

.logo-menu-cerrado {
    width: 105px;
    height: 40px;
    border-radius: 5px;
    margin-top: 2.5px;
    margin-right: 10px;
}

.contenedor-secciones-menu {
    z-index: 30;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: #334D35;
    transition: left 0.5s ease; 
}

.contenedor-menu-encabezado {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
}

.contenedor-boton-cerrar-menu {
    width: 80%;
    height: 100%;
}

.boton-cerrar-menu {
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-left: 10px;
    margin-top: 15px;
}

.boton-cerrar-menu:hover {
    transform: rotate(90deg);
}

.contenedor-logo-menu {
    width: 20%;
    height: 100%;
    display: flex;
    justify-content: end;
}

.logo-menu {
    width: 115px;
    height: 45px;
    border-radius: 5px;
    margin-top: 2.5px;
    margin-right: 10px;
}

.contenedor-input-busqueda {
    width: 100%;
    height: 55px;
    display: flex;
    justify-content: center;
}

.input-busqueda-menu {
    width: 95%;
    height: 35px;
    margin-top: 10px;
    border-radius: 10px;
    border: none;
    padding-left: 25px;
    padding-right: 25px;
}

.secciones-menu {
    width: 100%;
    height: auto;
}

.li-menu {
    font-family: sans-serif;
    text-align: center;
    list-style-type: none;
    margin-top: 30px;
    font-size: 20px;
}

.a-menu {
    color: #fff;
    text-decoration: none;
}

.a-menu:hover {
    border-bottom: #fff solid 2px;
    color: #ccc;
}

/* Animacion de scroll */
.scroll-objetos {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
}

/* Desaparece */
.hidden {
    display: none;
}

.scroll-objetos.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Inicio */
.contenedor-fondo-inicio {
    width: 100%;
    height: 300px;
    background-image: url("img/fondo-contacto.jpeg");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat; 
}

.contenedor-titulo-contacto {
    width: 100%;
    height: 100px;
    background-color: #4F6F54;
    display: flex;
    justify-content: center;
    align-items: center;
}

.titulo-contacto {
    font-family: sans-serif;
    color: #fff;
    font-size: 40px;
}

.contenedor-descripcion-contacto {
    width: 90%;
    max-width: 450px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #4F6F54;
    font-family: sans-serif;
    font-size: 22px;
    margin: auto;
    padding-top: 50px;
}

.contenedor-descripcion-contacto > p {
    text-align: center;
}

/* Formulario y horario */
.contenedor-formulario-horario {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.contenedor-formulario {
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
    width: 50%;
    height: 100%;
    gap: 25px;
}

input, textarea {
    width: 95%;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 2.5px;
    padding: 10px 20px;
    color: #4F6F54;
    font-size: 15px;
}

textarea {
    min-height: 125px;
    resize: vertical;
}

input:focus, textarea:focus {
    outline: none; 
    border: solid 2px #ccc; 
}

button {
    background-color: #4F6F54;
    color: #fff;
    border: none;
    border-radius: 2.5px;
    cursor: pointer;
    height: 40px;
    width: 200px;
    transition: background-color 0.3s ease, transform 0.2s ease; 
    font-size: 15px;
    margin: auto;
}

button:hover {
    background-color: #334D35;
}

.contenedor-horario {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    padding: 25px;
}

.horario-box {
    width: 100%;
    max-width: 380px;   
    height: 325px;
    background-color: #4F6F54;
    color: #fff;
    border-radius: 14px;
    padding: 30px;      
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
}

.horario-box h2 {
    font-size: 2rem;    
    margin-bottom: 18px;
    font-family: sans-serif;
    font-weight: bold;
}

.horario-box p {
    font-size: 1.35rem; 
    margin-bottom: 12px;
    line-height: 1.6;
    font-family: sans-serif;
}

/* Informacio contacto */
.seccion-info {
    width: 90%;
    height: 250px;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #4F6F54;
    margin-top: 50px;
    border-radius: 10px;
    gap: 0; 
}

.contenedor-telefono, .contenedor-correo, .contenedor-whatsapp {
    flex: 1 1 33%; 
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.contenedor-telefono {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.contenedor-whatsapp {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.img-telefono, .img-gmail, .img-whatsapp {
    width: 60px;
    height: 60px;
}

.telefono, .gmail, .whatsapp {
    font-size: 20px;
    font-family: sans-serif;
    color: #000;
    text-decoration: none;
}

.telefono:hover, .gmail:hover, .whatsapp:hover {
    color: #111;
}

.contenedor-mapa {
    width: 90%;
    height: 600px;
    margin: auto;
    margin-top: 50px;
    border-radius: 10px;
}

.mapa {
    width: 100%;
    height: 400px;
    border-radius: 10px;
}

/* Seccion de footer */
.contenedor-footer {
    width: 100%;
    height: 500px;
    background-color: #D1D1D1;
    margin-top: 20px;  
}

.contenedor-titulo-footer {
    width: 100%;
    height: 400px;
}

.titulo-footer {
    text-align: center;
    padding-top: 340px;
    font-family: sans-serif;
    font-size: 18px;
}

.contenedor-redes {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.redes-footer {
    transition: transform 0.3s ease;
}

.redes-footer:hover {
    transform: translateY(-10px); 
}

.contenedor-derechos {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    background-color: #4F6F54;
}

.p-derechos {
    margin-top: 30px;
    font-family: sans-serif;
    color: #fff;
}

/* Medias query adaptamiento */
@media screen and (min-width : 781px) and (max-width: 930px) {
    .img-horario {
        max-width: 350px;
    }
}

@media screen and (min-width : 700px) and (max-width: 780px) {
    .contenedor-secciones, .contenedor-vacio-inicio, .contenedor-vacio-final {
        display: none;
    }

    .contenedor-logo {
        width: 80%;
        justify-content: end;
        margin-right: 10px;
    }

    .contenedor-boton-hamburguesa, .contenedor-secciones-menu, .contenedor-img-logo-menu,
    .contenedor-logo-menu-cerrado {
        display: block;
    }

    .contenedor-logo-menu-cerrado {
        display: flex;
        justify-content: end;
    }

    nav {
        height: 50px;
    }

    .logo-menu-cerrado, .logo-menu {
        width: 115px;
        height: 45px;
    }

    .titulo-contacto {
        font-size: 37.5px;
    }

    .contenedor-descripcion-contacto > p {
        font-size: 21px;
    }

    .contenedor-formulario-horario {
        flex-direction: column; 
    }

    .contenedor-horario, .contenedor-formulario {
        width: 90%;
    }

    .contenedor-formulario {
        justify-content: center;
    }

    .contenedor-horario {
        margin-top: 45px;
    }

    .img-telefono, .img-gmail, .img-whatsapp {
        width: 40px;
        height: 40px;
    }

    .telefono, .gmail, .whatsapp {
        font-size: 18px;
    }

    .p-derechos {
        font-size: 14px;
    }
}

@media screen and (min-width : 500px) and (max-width: 699px) {
    .contenedor-secciones, .contenedor-vacio-inicio, .contenedor-vacio-final {
        display: none;
    }

    .contenedor-logo {
        width: 80%;
        justify-content: end;
        margin-right: 10px;
    }

    .contenedor-boton-hamburguesa, .contenedor-secciones-menu, .contenedor-img-logo-menu,
    .contenedor-logo-menu-cerrado {
        display: block;
    }

    .contenedor-logo-menu-cerrado {
        display: flex;
        justify-content: end;
    }

    nav {
        height: 50px;
    }

    .logo-menu-cerrado, .logo-menu {
        width: 115px;
        height: 45px;
    }

    .titulo-contacto {
        font-size: 37.5px;
    }

    .contenedor-descripcion-contacto > p {
        font-size: 21px;
    }

    .contenedor-formulario-horario {
        flex-direction: column; 
    }

    .contenedor-horario, .contenedor-formulario {
        width: 90%; 
    }

    .contenedor-formulario {
        justify-content: center;
    }

    .contenedor-horario {
        margin-top: 45px;
    }

    .img-horario {
        max-width: 350px; 
    }

    .seccion-info {
        flex-direction: column; 
        height: auto; 
        gap: 20px; 
    }

    .contenedor-telefono, .contenedor-correo, .contenedor-whatsapp {
        width: 90%; 
        height: auto; 
        border-radius: 10px;
        justify-content: center;
        padding: 10px 10px;
    }

    .img-telefono, .img-gmail, .img-whatsapp {
        width: 40px;
        height: 40px;
        margin-left: 50px;
    }

    .telefono, .gmail, .whatsapp {
        font-size: 18px;
        margin-left: 50px;
    }

    .p-derechos {
        font-size: 14px;
    }
}

@media screen and (min-width : 440px) and (max-width: 499px) {
    .contenedor-secciones, .contenedor-vacio-inicio, .contenedor-vacio-final {
        display: none;
    }

    .contenedor-logo {
        width: 80%;
        justify-content: end;
        margin-right: 10px;
    }

    .contenedor-boton-hamburguesa, .contenedor-secciones-menu, .contenedor-img-logo-menu,
    .contenedor-logo-menu-cerrado {
        display: block;
    }

    .contenedor-logo-menu-cerrado {
        display: flex;
        justify-content: end;
    }

    nav {
        height: 50px;
    }

    .logo-menu-cerrado, .logo-menu {
        width: 115px;
        height: 45px;
    }

    .titulo-contacto {
        font-size: 35px;
    }

    .contenedor-descripcion-contacto > p {
        font-size: 20px;
    }

    .contenedor-formulario-horario {
        flex-direction: column;
    }

    .contenedor-horario, .contenedor-formulario {
        width: 90%; 
    }

    .contenedor-formulario {
        justify-content: center;
    }

    .img-horario {
        max-width: 350px; 
    }   
    
    .contenedor-horario {
        margin-top: 40px;
    }

    .seccion-info {
        flex-direction: column; 
        height: auto;
        gap: 20px; 
    }

    .contenedor-telefono, .contenedor-correo, .contenedor-whatsapp {
        width: 90%; 
        height: auto; 
        border-radius: 10px; 
        padding: 10px 10px;
    }

    .img-telefono, .img-gmail, .img-whatsapp {
        width: 40px;
        height: 40px;
        margin-left: 50px;
    }

    .telefono, .gmail, .whatsapp {
        font-size: 18px;
        margin-left: 50px;
    }

    .p-derechos {
        font-size: 12px;
    }
}

@media screen and (min-width : 385px) and (max-width: 439px) {
    .contenedor-secciones, .contenedor-vacio-inicio, .contenedor-vacio-final {
        display: none;
    }

    .contenedor-logo {
        width: 80%;
        justify-content: end;
        margin-right: 10px;
    }

    .contenedor-boton-hamburguesa, .contenedor-secciones-menu, .contenedor-img-logo-menu,
    .contenedor-logo-menu-cerrado {
        display: block;
    }

    .contenedor-logo-menu-cerrado {
        display: flex;
        justify-content: end;
    }

    nav {
        height: 50px;
    }

    .logo-menu-cerrado, .logo-menu {
        width: 115px;
        height: 45px;
    }

    .titulo-contacto {
        font-size: 35px;
    }

    .contenedor-descripcion-contacto > p {
        font-size: 18px;
    }

    .contenedor-formulario-horario {
        flex-direction: column; 
    }

    .contenedor-horario, .contenedor-formulario {
        width: 90%; 
    }

    .contenedor-formulario {
        justify-content: center;
    }

    .img-horario {
        max-width: 350px; 
    }  
    
    .contenedor-horario {
        margin-top: 40px;
    }

    .seccion-info {
        flex-direction: column; 
        height: auto;
        gap: 20px; 
    }

    .contenedor-telefono, .contenedor-correo, .contenedor-whatsapp {
        width: 90%;
        height: auto; 
        border-radius: 10px; 
        padding: 10px 10px;
    }

    .img-telefono, .img-gmail, .img-whatsapp {
        width: 40px;
        height: 40px;
        margin-left: 40px;
    }

    .telefono, .gmail, .whatsapp {
        font-size: 18px;
        margin-left: 40px;
    }

    .p-derechos {
        font-size: 12px;
    }
}

@media screen and (min-width : 320px) and (max-width: 384px) {
    .contenedor-secciones, .contenedor-vacio-inicio, .contenedor-vacio-final {
        display: none;
    }

    .contenedor-logo {
        width: 80%;
        justify-content: end;
        margin-right: 10px;
    }

    .contenedor-boton-hamburguesa, .contenedor-secciones-menu, .contenedor-img-logo-menu,
    .contenedor-logo-menu-cerrado {
        display: block;
    }

    .contenedor-logo-menu-cerrado {
        display: flex;
        justify-content: end;
    }

    nav {
        height: 50px;
    }

    .logo-menu-cerrado, .logo-menu {
        width: 115px;
        height: 45px;
    }

    .titulo-contacto {
        font-size: 35px;
    }  
    
    .contenedor-descripcion-contacto > p {
        font-size: 18px;
    }

    .contenedor-formulario-horario {
        flex-direction: column; 
    }

    .contenedor-horario, .contenedor-formulario {
        width: 90%; 
    }

    .contenedor-formulario {
        justify-content: center;
    }

    .img-horario {
        max-width: 350px; 
        margin-top: 25px;
    }

    .contenedor-horario {
        margin-top: 25px;
    }

    .seccion-info {
        flex-direction: column; 
        height: auto; 
        gap: 20px;
    }

    .contenedor-telefono, .contenedor-correo, .contenedor-whatsapp {
        width: 90%; 
        height: auto; 
        border-radius: 10px; 
        padding: 10px 10px;
    }

    .img-telefono, .img-gmail, .img-whatsapp {
        width: 40px;
        height: 40px;
        margin-left: 30px;
    }

    .telefono, .gmail, .whatsapp {
        font-size: 18px;
        margin-left: 30px;
    }

    .p-derechos {
        font-size: 12px;
    }
}