* {
    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;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
}

body {
    background-color: rgb(211, 211, 211);
    font-family: Arial, sans-serif;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.linea {
    border-bottom: 3px solid rgb(227, 176, 35);
    margin: 0 auto;
    font-size: 35px;
    animation: zoomIn 0.5s ease-out;
    width: 25%;
}

.Carrusel {
    width: 100%;
    overflow: hidden;
    position: relative;
    animation: zoomIn 0.5s ease-out;

}

.carrusel-wrapper {
    display: flex;
    width: max-content;
    animation: scroll 230s linear infinite;
}

.Carrusel ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.Carrusel li {
    width: 1.5%; 
    margin: 0 10px;
    flex-shrink: 0;
}

.Carrusel img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.titulo {
    border-bottom: 3px solid rgb(227, 176, 35);
    width: 250px;
    margin: 0 auto;
    font-size: 30px;
    animation: zoomIn 0.5s ease-out;
}

.servicios {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    animation: zoomIn 0.5s ease-out;

}

.circle-container {
    text-align: center;
    width: 200px;
}

.circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.circle a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    text-decoration: none;
}

.circle:hover {
    transform: scale(1.2);
    border: 8px double #E3B023;
}

.Imag {
    width: 60%;
    height: auto;
    object-fit: contain;
}

.title {
    margin-top: 10px;
    font-size: 18px;
    color: black;
    font-weight: bold;
    width: 100%;
    overflow-wrap: break-word;
    text-align: center;
}

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;
    }

    .text, .text2, .text3 {
        width: 100%;
        margin-bottom: 20px;
        text-decoration: none;
    }

    .circle {
        width: 150px; /* Cambia el tamaño del círculo */
        height: 150px; /* Cambia el tamaño del círculo */
    }

    .Imag {
        width: 50%; /* Cambia el tamaño de la imagen */
    }

    .title {
        font-size: 14px; /* Ajusta el tamaño de la fuente */
    }

    .servicios {
        gap: 30px; /* Reduce el espacio entre los servicios */
    }

    .title {
        font-size: 14px; /* Ajusta el tamaño de la fuente */
        text-align: center; /* Alinea el texto al centro */
        margin-top: 5px; /* Ajusta el margen superior si es necesario */
    }

    .circle-container {
        display: flex;
        flex-direction: column; /* Cambia a columna para alinear el texto debajo */
        align-items: center; /* Alinea el contenido al centro */
    }

    .serv{
        font-size: 2.5em;
        width: 90%;
    }
}

.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;
    }

    .linea {
        width: 90%;
        font-size: 2.5em; /* Más grande para pantallas pequeñas */
    }

    .contact-header {
        width: 90%;
        font-size: 1em; /* Más grande para pantallas pequeñas */
    }

    .Carrusel li {
        width: 1%; 
        margin: 0 10px;
        flex-shrink: 0;
    }

    header{
        height: 10%;
    }

    .LOGO {
        width: 30%;
        height: auto;
    }

    .titulo{
        font-size: 1.5em;
        width: 50%;
    }
    .text, .text2, .text3 {
        display: block; 
        width: 100%; 
        margin: 10px 0; 
        font-size: 16px; 
    }
}

@media (max-width: 480px) {
    .social-buttons {
        right: 5px;
    }

    .social-icon img {
        width: 35px;
        height: 35px;
    }

    .linea {
        width: 90%;
        font-size: 2em; /* Más grande para pantallas pequeñas */
    }

    .Carrusel li {
        width: 1%; 
        margin: 0 10px;
        flex-shrink: 0;
    }

    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; 
    }
}
