* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
}

body {
    background-color: rgb(211, 211, 211);
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

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;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.conten {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
    justify-items: center; 
    margin: 0 auto;
    width: 90%; 
    max-width: 1200px; 
    animation: zoomIn 0.5s ease-out;

}

.cuadro {
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
    width: 100%;
    min-height: 360px;
    padding: 20px; 
    border: 2px solid #E3B023; 
    border-radius: 10px; 
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); 
    transition: transform 0.3s ease;
    background-color: #ffff;
}

.cuadro:hover {
    transform: scale(1.05); /* Escala del cuadro al pasar el cursor */
}

.linea {
    border-bottom: 3px solid rgb(227, 176, 35);
    width: 20%;
    margin: 0 auto;
    font-size: 30px;
    animation: zoomIn 0.5s ease-out;

}

h2 {
    font-size: 1.4em; /* Tamaño de fuente mayor para títulos */
    margin-bottom: 15px; /* Mayor espacio debajo del título */
    width: 100%;
    min-height: 60px;
    display: flex;
    align-items: center; 
    justify-content: center; 
    text-align: center;
    flex-grow: 1;
    padding: 10px;
}

.Imagen_S {
    width: 100%; 
    height: auto;
    border-radius: 7px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.Imagen_S:hover {
    border: 8px double #E3B023;
}

a {
    text-decoration: none;
    color: black;
}

/* Ajuste para pantallas móviles */
@media (max-width: 768px) {
    
    h2 {
        font-size: 1em; /* Reduce el tamaño del texto del título */
    }

}

/* 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;
}

/* Estilos Responsivos */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        font-size: 1em;
    }


    .menu-items {
        display: none;
        flex-direction: column;
        gap: 15px;
        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 {
    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);
}

/* Ajustes responsivos para pantallas más pequeñas */
@media (max-width: 768px) {
    .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 */
    }

    .linea {
        width: 90%;
        font-size: 2.5em; /* Más grande para pantallas pequeñas */
    }
}

@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 */
    }

    .linea {
        width: 70%;
        font-size: 2em; /* Más grande para pantallas pequeñas */
    }
}
