
* {
    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;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

section.servicio {
    display: flex;
    flex-direction: column; /* Apila los elementos verticalmente */
    align-items: center; /* Centra los elementos horizontalmente */
    width: 60%;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 7px;
    box-shadow: 0 0 12px rgb(227, 176, 35);
    animation: zoomIn 0.5s ease-out;
}

.Imag {
    width: 100%; /* Ajusta el ancho al 100% */
    max-width: 700px; /* Limita el ancho máximo para pantallas grandes */
    height: auto; /* Mantiene la proporción */
    box-shadow: 0 0 12px rgb(227, 176, 35);
    border-radius: 7px;
    margin-top: 20px; /* Margen superior para separar del texto */
}

.texto {
    width: 60%;
    text-align: center;
}

h1 {
    font-size: 30px;
    margin-bottom: 15px;
}

.texto2{
    font-size: 30px;
    color: black;
}

.regresar-container {
    margin-top: 20px;
    text-align: center;
}

.regresar-btn {
    padding: 10px 20px;
    background-color: rgb(227, 176, 35);
    color: black;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 20px;
    transition: background-color 0.3s ease;
    box-shadow: 0 0 8px black
}

.regresar-btn:hover {
    background-color: rgb(227, 176, 35);
}


footer {
    background-color: rgb(227, 176, 35);
    color: black;
    padding: 20px;
    width: 100%;
}

.text, .text2, .text3 {
    display: inline-block;
    width: 30%;
    vertical-align: top;
    margin: 10px 0;
    font-size: 21px;
}

.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: 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;
    }   

}

.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); /* Efecto de hover */
}

/* Ajustes responsivos para pantallas más pequeñas */
@media (max-width: 768px) {
    .social-buttons {
        right: 10px; /* Ajuste de distancia desde la derecha en pantallas pequeñas */
    }

    .social-icon img {
        width: 40px; /* Tamaño de los iconos en pantallas pequeñas */
        height: 40px;
    }

    header{
        height: 10%;
    }

    .LOGO {
        width: 30%;
        height: auto;
    }

    .contact-header {
        width: 90%;
        font-size: 1em; /* Más grande para pantallas pequeñas */
    }
    
    .text, .text2, .text3 {
        display: block; 
        width: 100%; 
        margin: 10px 0; 
        font-size: 16px; 
    }

    section.servicio{
        width: 90%;
    }

    section.servicio h1 {
        font-size: 20px; /* Ajusta el tamaño del h1 para pantallas medianas */
        justify-content: center;
    }

    section.servicio .texto2 {
        font-size: 18px; /* Ajusta el tamaño del texto2 para pantallas medianas */
    }
    
}

@media (max-width: 480px) {
    .social-buttons {
        right: 5px; /* Ajuste adicional para pantallas muy pequeñas */
    }

    .social-icon img {
        width: 35px; /* Tamaño de los iconos en pantallas muy pequeñas */
        height: 35px;
    }

    header{
        height: 10%;
    }

    .LOGO {
        width: 30%;
        height: auto;
    }

    .contact-header {
        width: 90%;
        font-size: 1em; /* Más grande para pantallas pequeñas */
    }

    
    .text, .text2, .text3 {
        display: block; 
        width: 100%; 
        margin: 10px 0; 
        font-size: 16px; 
    }

    section.servicio h1 {
        font-size: 20px; /* Ajusta el tamaño del h1 para pantallas medianas */
    }

    section.servicio .texto2 {
        font-size: 16px; /* Ajusta el tamaño del texto2 para pantallas medianas */
    }
}
