* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
}

body {
    background-color: rgb(211, 211, 211);
    font-family: Arial, sans-serif;
}

header {
    background-color: rgb(227, 176, 35);
    display: flex;
    flex-direction: column;
    align-items: center;
    top: 0; 
    z-index: 1000;
}

.contact-header {
    font-size: 1.1vw; 
    color: black;
    margin: 10px 0; 
    font-weight: bold;
    text-decoration: none;
}



.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    width: 100%;
}

.LOGO {
    width: 11%;
    height: auto;
}

.Menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-size: 20px
}

.required{
    color: black;
}

.required:hover{
    color: black;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2em;
    cursor: pointer;
    margin: 10px 0;
}

.menu-items {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.men {
    font-size: 1.5em;
    color: black;
    padding: 10px;
    text-decoration: none;
}

.men:hover {
    color: white;
}

/* Estilos del contenido principal */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.conten {
    background-color: white;
    padding: 20px;
    width: 90%; /* Ajusta el ancho al 90% del contenedor */
    margin: 30px auto;
    border-radius: 7px;
    text-align: center;
    box-shadow: 0 0 12px rgb(227, 176, 35);
    animation: slideIn 0.5s ease-out;
    animation: zoomIn 0.5s ease-out;

}

.tit1 {
    margin-bottom: 20px;
}

.linea {
    border-bottom: 3px solid rgb(227, 176, 35);
    width: 300px;
    margin: 0 auto;
    font-size: 30px;
}

.linea2 {
    border-bottom: 3px solid rgb(227, 176, 35);
    width: 130px;
    margin: 0 auto;
    font-size: 30px;
}

.linea3 {
    border-bottom: 3px solid rgb(227, 176, 35);
    width: 350px;
    margin: 0 auto;
    font-size: 30px;
}
.titulo{
font-size: 28px;
}

.somos {
    margin: 20px auto;
    width: 100%;
    text-align: left;
    padding-left: 10px;
    font-size: 30px; /* Ajusta el tamaño de fuente para mejor legibilidad */
}

.somos1 {
    font-size: 25px;
    margin: 1px 0;
}

@keyframes imagen {
    0%{margin-left: 10%; opacity: 0.50;}
    100%{margin-left: 0%;}

}

.anim {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 50px auto;
    animation-name: imagen;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-duration: 2s;
}

/* Elementos ocultos inicialmente */
.aparece {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Elementos visibles (cuando el usuario hace scroll) */
.visible {
    opacity: 1;
    transform: translateY(0);
}


.conten2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    width: 90%; /* Ajusta el ancho al 90% del contenedor */
    margin: 30px auto;
    animation: zoomIn 0.5s ease-out;
}

.mision, .vision {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    background-color: #fff;
    border-radius: 7px;
    color: black;
    text-align: center;
    box-shadow: 0 0 12px rgb(227, 176, 35);
    transition: transform 0.3s ease;
}

.valores {
    background-color: white;
    padding: 20px;
    width: 90%; /* Ajusta el ancho al 90% del contenedor */
    margin: 20px auto;
    border-radius: 7px;
    text-align: center;
    box-shadow: 0 0 12px rgb(227, 176, 35);
    animation: zoomIn 0.5s ease-out;

}

.cuadros{
    padding: 1%;
    width: 98%;
    margin: 20px auto;
    text-align: center;
    box-sizing: border-box;
}

/* Estilos del pie de página */
footer {
    background-color: rgb(227, 176, 35);
    color: black;
    padding: 20px;
    width: 100%;
}

.text, .text2, .text3 {
    display: inline-block;
    width: 30%; /* Ajuste al 30% en pantallas grandes */
    vertical-align: top;
    margin: 10px 0;
    font-size: 21px; /* Ajuste del tamaño de fuente */
}

.text2 {
    text-align: left;
}

.social-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-icon img {
    width: 50px;
    height: 50px;
    border-radius: 30%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.social-icon img:hover {
    transform: scale(1.2);
}

/* Estilos Responsivos */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        font-size: 1em;
    }

    .menu-items {
        display: none;
        flex-direction: column;
        gap: 10px;
        background-color: rgb(227, 176, 35);
        padding: 10px;
        width: 100%;
        text-align: center;
    }

    .menu-items a {
        border-right: none;
        font-size: 1em; /* Aumenta el tamaño de la fuente */
        padding: 5px;
        display: block;
    }

    .text, .text2, .text3 {
        display: block; 
        width: 100%; 
        margin: 10px 0; 
        font-size: 16px; 
    }

    .social-buttons {
        right: 10px;
    }

    .social-icon img {
        width: 40px;
        height: 40px;
    }

    header{
        height: 10%;
    }

    .LOGO {
        width: 30%;
        height: auto;
    }

    .contact-header {
        width: 90%;
        font-size: 1em; /* Más grande para pantallas pequeñas */
    }

    .somos1 {
        font-size: 18px; /* Ajusta el tamaño de fuente para dispositivos más pequeños */
    }

    .titulo {
        font-size: 24px; /* Ajusta el tamaño de fuente para los títulos */
    }

    .linea3{
        width: 50%;
    }
}

@media (max-width: 480px) {
    .social-buttons {   
        right: 5px;
    }

    .social-icon img {
        width: 35px;
        height: 35px;
    }

    header{
        height: 10%;
    }

    .LOGO {
        width: 30%;
        height: auto;
    }

    .contact-header {
        width: 90%;
        font-size: 1em; /* Más grande para pantallas pequeñas */
    }

    .somos1 {
        font-size: 18px; /* Ajusta el tamaño de fuente para dispositivos más pequeños */
    }

    .titulo {
        font-size: 24px; /* Ajusta el tamaño de fuente para los títulos */
    }

    .text, .text2, .text3 {
        display: block; 
        width: 100%; 
        margin: 10px 0; 
        font-size: 16px; 
    }

}
