/* 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;
}

.sobre_nosotros {
    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.sobre_nosotros {
    border-bottom: 2px solid #fff;
}

.contenedor-secciones > ol > li > a.sobre_nosotros::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;
}

/* Desaparece */
.hidden {
    display: none;
}

/* Animacion de scroll */
.scroll-objetos {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
}

.scroll-objetos.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Seccion sobre nosotros encabezado */
.contenedor-descripcion-nosotros {
    width: 100%;
    min-height: 300px; 
    height: 400px;
    background-color: #4F6F54;
    display: flex;
    align-items: center;      
    justify-content: center;  
    text-align: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

.contenido-nosotros {
    max-width: 800px;
    width: 100%;
}

.titulo-nosotros {
    font-family: sans-serif;
    color: #fff;
    font-size: 36px;
    margin-bottom: 15px;
}

.contenedor-descripcion {
    width: 100%;
}

.p-descripcion-nosotros {
    font-family: sans-serif;
    color: #fff;    
    font-size: 18px;
    line-height: 1.6;
}

/* Fondo fijo al hacer scroll */
.contenedor-fondo-deslizante {
    width: 100%;
    height: 300px; 
    background-image: url("img/fondo-inicio-sobrenosotros.jpeg"); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
    background-attachment: fixed; 
}

/* Informacion empresa */
.contenedor-info {
    width: 100%;
    background-color: #4F6F54;
    display: flex;
    flex-direction: column; 
    align-items: center; 
    padding: 30px 0;
    gap: 20px; 
}

.contenedor-mision, .contenedor-vision {
    width: 80%; 
    height: auto;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.contenedor-mision:hover, .contenedor-vision:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}

.titulo-mision, .titulo-vision {
    text-align: center;
    font-family: sans-serif;
    margin-top: 10px;
    color: #fff;
    letter-spacing: 1px;
    font-size: 1.4em;
    text-transform: uppercase;
}

.p-mision, .p-vision {
    text-align: center;
    font-family: sans-serif;
    margin-top: 10px;
    color: #fff;
    line-height: 1.6;
    font-size: 1em;
    padding: 0 10px;
}

/* Mas informacion */
.contenedor-mas-info {
    width: 100%;
    height: 200px;
    background-color: #4F6F54;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    margin-top: 2px;
}

.pregunta-info {
    font-family: sans-serif;
    color: #fff;
    font-size: 30px;
}

.btn-contactanos {
    width: 150px;
    height: 30px;
    background-color: #fff;
    border-radius: 2.5px;
    border: none;
    transition: 0.5s;
    cursor: pointer;
    color: #4F6F54;
}

.btn-contactanos:hover {
    background-color: #ccc;
}

.a-contactanos {
    font-family: sans-serif;
    text-decoration: none;
    padding-top: 25px;
}

.contenedor-img-info {
    width: 100%;
    height: 250px;
    background-image: url("img/fondo-attachment-sobrenosotros.jpeg");
    background-size: cover; 
    background-position: top; 
    background-repeat: no-repeat;
}

/* 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 : 700px) and (max-width: 890px) {
    .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-info {
        flex-direction: column; 
        align-items: center;
    }

    .contenedor-mision, .contenedor-vision {
        width: 90%; 
        margin-bottom: 20px;
    }

    .pregunta-info {
        font-size: 27.5px;
    }

    .btn-contactanos {
        width: 140px;
        height: 29px;
    }

    .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;
    }

    .contenedor-info {
        flex-direction: column; 
        align-items: center;
    }

    .contenedor-mision, .contenedor-vision {
        width: 90%; 
        margin-bottom: 20px;
    }

    .pregunta-info {
        font-size: 25px;
    }

    .btn-contactanos {
        width: 135px;
        height: 28px;
    }

    .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;
    }

    .contenedor-info {
        flex-direction: column; 
        align-items: center;
    }

    .contenedor-mision, .contenedor-vision {
        width: 90%; 
        margin-bottom: 20px;
    }

    .pregunta-info {
        font-size: 27px;
    }

    .pregunta-info {
        font-size: 22.5px;
    }

    .btn-contactanos {
        width: 130px;
        height: 27px;
    }

    .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-info {
        flex-direction: column; 
        align-items: center;
    }

    .contenedor-mision, .contenedor-vision {
        width: 90%; 
        margin-bottom: 20px;
    }

    .pregunta-info {
        font-size: 20px;
    }

    .btn-contactanos {
        width: 125px;
        height: 26px;
    }

    .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-info {
        flex-direction: column; 
        align-items: center;
    }

    .contenedor-mision, .contenedor-vision {
        width: 90%; 
        margin-bottom: 20px;
    }

    .pregunta-info {
        font-size: 17.5px;
    }

    .btn-contactanos {
        width: 120px;
        height: 25px;
    }

    .p-derechos {
        font-size: 12px;
    }
}