/* 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;
}

.inicio {
    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.inicio {
    border-bottom: 2px solid #fff;
}

.contenedor-secciones > ol > li > a.inicio::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;
}

/* Seccion bienvenida */
.contenedor-inicio-bienvenida {
    width: 100%;
    height: 100vh;
    background-image: url("img/fondo-inicio-principal.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.contenedor-descipcion-bienvenida {
    width: 95%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
}

.titulo-bienvenida {
    text-align: center;
    color: #fff;
    font-family: sans-serif;
    font-size: 70px;
    margin-top: 75px;
}

.bienvenida-descripcion {
    color: #fff;
    font-family: sans-serif;
    text-align: center;
    font-size: 35px;
    line-height: 1.5;
    margin-top: 25px;
}

/* Desaparece */
.hidden {
    display: none;
}

/* Sección de carrusel de fotos automático y manual */
.carrusel {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 25px;
    background-color: #fff;
}

.contenedor-img-automatico {
    width: 90%;
    max-width: 1200px;
    height: 500px;
    margin: auto;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contenedor-imagenes {
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
}

.contenedor-imagenes.activar {
    display: flex;
    animation: fade 0.5s ease-in-out;
}

@keyframes fade {
    from {
        opacity: 0; 
        transform: translateX(15px);
    }

    to {
        opacity: 1; 
        transform: translateX(0);
    }
}

.contenedor-imagenes img {
    max-width: 97.5%;
    max-height: 97.5%;
    object-fit: cover;
    border-radius: 10px;
}

.flecha-izquierda, .flecha-derecha {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: solid 1px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
    z-index: 15;
}

.flecha-izquierda {
    margin-left: -550px;
}

.flecha-derecha {
    transform: translateY(-50%) rotate(180deg);
    margin-right: -550px;
}

.flecha-izquierda:hover, .flecha-derecha:hover {
    background-color: #ccc;
}

.puntos-contenedor {
    text-align: center;
    height: 30px;
}

.punto {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 4px;
    cursor: pointer;
    margin-top: 10px;
}

.punto.activar {
    background-color: #4F6F54;
}

/* Animacion de scroll */
.scroll-objetos {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
}

.scroll-objetos.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fondo fijo al hacer scroll */
.contenedor-fondo-deslizante {
    width: 100%;
    height: 250px; 
    background-image: url("img/fondo-attachment-inicio.jpeg"); 
    background-size: cover; 
    background-position: top; 
    background-repeat: no-repeat;
    background-attachment: fixed; 
    margin-top: 10px;
}

/* Seccion de footer */
.contenedor-footer {
    width: 100%;
    height: 500px;
    background-color: #D1D1D1;  
}

.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: 863px) {
    .titulo-bienvenida {
        font-size: 65px;
    }

    .bienvenida-descripcion {
        font-size: 30px;
    }
}

@media screen and (min-width : 596px) 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-bienvenida {
        font-size: 60px;
        margin-top: 70px;
    }

    .bienvenida-descripcion {
        font-size: 30px;
        margin-top: 15px;
    }

    .contenedor-img-automatico {
        height: 450px;
    }

    .flecha-derecha {
        margin-right: -390px;
        width: 35px;
        height: 35px;
    }

    .flecha-izquierda {
        margin-left: -390px;
        width: 35px;
        height: 35px;
    }

    .p-derechos {
        font-size: 14px;
    }
}

@media screen and (min-width : 500px) and (max-width: 595px) {
    .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-bienvenida {
        font-size: 47.5px;
        margin-top: 70px;
    }

    .bienvenida-descripcion {
        font-size: 28px;
        margin-top: 20px;
    }

    .contenedor-img-automatico {
        height: 450px;
    }

    .flecha-derecha {
        margin-right: -390px;
        width: 35px;
        height: 35px;
    }

    .flecha-izquierda {
        margin-left: -390px;
        width: 35px;
        height: 35px;
    }

    .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-bienvenida {
        font-size: 42.5px;
        margin-top: 65px;
    }

    .bienvenida-descripcion {
        font-size: 25px;
    }

    .contenedor-img-automatico {
        height: 400px;
    }

    .flecha-derecha {
        margin-right: -340px;
        width: 35px;
        height: 35px;
    }

    .flecha-izquierda {
        margin-left: -340px;
        width: 35px;
        height: 35px;
    }

    .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;
    }

    .contenedor-img-automatico {
        height: 350px;
    }

    .titulo-bienvenida {
        font-size: 37px;
        margin-top: 70px;
    }

    .bienvenida-descripcion {
        font-size: 24px;
        margin-top: 15px;
    }

    .flecha-derecha {
        margin-right: -300px;
        width: 30px;
        height: 30px;
    }

    .flecha-izquierda {
        margin-left: -300px;
        width: 30px;
        height: 30px;
    }

    .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;
    }

    .contenedor-img-automatico {
        height: 300px;
    }

    .titulo-bienvenida {
        font-size: 30px;
    }

    .bienvenida-descripcion {
        font-size: 22.5px;
    }

    .flecha-derecha {
        margin-right: -255px;
        width: 25px;
        height: 25px;
    }

    .flecha-izquierda {
        margin-left: -255px;
        width: 25px;
        height: 25px;
    }

    .p-derechos {
        font-size: 12px;
    }
}