:root {
    --fuenteHeading: 'PT Sans', sans-serif;
    --fuenteParrafos: 'Open Sans', sans-serif;
    --fuenteTitulos: 'Roboto', sans-serif;

    --primario: #0066cc;
    --azulobs: #00478d;
    --naranja: #e65c00;
    --gris: #363636;
    --negro: #000000;
    --verde: #25D366;
}

/* Global Styles */
html {
    box-sizing: border-box;
    font-size: 62.5%;
    /* 1 rem = 10px */
}

*,
*:before,
*:after {
    box-sizing: inherit;
}



body {
    font-family: var(--fuenteParrafos);
    font-size: 1.6rem;
    line-height: 2;
    margin: 0;
    padding: 0;
    text-align: center;
}


.container {
    width: min(90%, 120rem);
    margin: 0 auto;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--fuenteTitulos);
    line-height: 1.2;
}

h1 {
    font-size: 4.8rem;
}

h2 {
    font-size: 4rem;
}

h3 {
    font-size: 3.2rem;
}

h4 {
    font-size: 2.0rem;
}

img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

img {
    max-width: 100%;
}

body>section {
    padding: 2rem 0
}



/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    color: rgb(255, 255, 255);
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.6);
}


.centrar-texto {
    text-align: center;
    color: var(--primario);
}

.barra {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* Estilo del logotipo */
.logo {
    width: 70px;
    display: block;
}

/* Navegación */
.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 5rem;
}

.nav li {
    display: inline;
}

.nav a {
    text-decoration: none;
    color: var(--negro);
    font-size: 1.6rem;
    transition: color 0.3s;
    font-family: var(--fuenteTitulos);
}

.nav a:hover {
    color: #ff6600;
}

/* Estilo del carrusel */
.carrusel {
    margin-top: 90px;
    /* Da espacio al carrusel debajo de la barra */
}

/* Responsividad */
@media (max-width: 768px) {
    .barra {
        flex-direction: column;
        align-items: center;
    }


    .nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0.2rem;
    }

    .nav a {
        font-size: 1.7rem;
        font-family: var(--fuenteTitulos);
    }

    .carrusel {
        margin-top: 190px;
        /* Aumenta el espacio cuando el diseño es en columnas */
    }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    /* Ocupa el 100% del ancho */
    height: 85vh;
    /* Ajusta la altura para que no ocupe toda la ventana */
    overflow: hidden;
    /* Evita que el contenido se desborde */
    background-size: cover;
    background-position: center;


}

/* Capa negra con transparencia */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    /* Capa negra con 70% de opacidad */
    z-index: 1;
    /* Asegura que esté debajo del contenido (texto) */
}

/* Carrusel */
.carousel {
    display: flex;
    /* Alinea las imágenes de manera horizontal */
    width: 100%;
    /* Asegura que el carrusel ocupe todo el ancho */
    height: 100%;
    /* Asegura que el carrusel ocupe toda la altura */
    transition: transform 1s ease;
}

.carousel-image {
    flex: 0 0 100%;
    /* Hace que cada imagen ocupe el 100% del contenedor */
    height: 100%;
    /* Asegura que las imágenes llenen el contenedor verticalmente */
    width: 100%;
    object-fit: cover;
    /* Asegura que las imágenes cubran el área sin deformarse */
    opacity: 0;
    /* Inicialmente las imágenes no se ven */
    transition: opacity 1s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
    /* Muestra la imagen activa */
}

/* Hero content positioning */
.hero-content {
    position: absolute;
    top: 50%;
    /* Centra verticalmente el contenido */
    left: 20px;
    transform: translateY(-50%);
    /* Ajuste para centrar completamente */
    color: white;
    text-align: left;
    z-index: 2;
    /* Asegura que el contenido esté por encima de la capa negra */

}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;

}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
    font-family: var(--fuenteTitulos);

}

.hero .btn {
    display: inline-block;
    background-color: var(--primario);
    /* Color naranja */
    color: white;
    padding: 18px 20px;
    border-radius: 25px;
    /* Bordes redondeados */
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero .btn:hover {
    background-color: var(--azulobs);
    /* Naranja más oscuro al pasar el cursor */
}

.hero .btn:active {
    background-color: var(--azulobs);
    /* Naranja más oscuro al hacer clic */
}





.toggle-btn {

    margin-top: 10px;
    padding: 10px 20px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
}

.toggle-btn:hover {
    background-color: var(--azulobs);
}


.toggle-btn {
    width: 100%;
    /* Botones más grandes y centrados */
    margin-top: 20px;
}


.hidden {
    display: none;
}

.hidden.active {
    display: block;
    transition: all 0.3s ease;
}

/* Servicios Section */
#servicios-destacados{
    color: var(--primario);
    text-align: center;
    /* Asegura que el título esté centrado */
    font-size: 3.1rem;
}

.services {
    padding: 30px 30px;
    background-color: #ffffff;
    text-align: center;
    

}

/* Estilo del contenedor del grid */
.service-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Tres columnas iguales */
    gap: 30px;
    margin-top: 5px;
    justify-content: center;
}

/* Estilo de cada ítem del servicio */
.service-item {
    background-color: var(--azulobs);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background-color: var(--primario);

}

/* Estilo del título */
.service-title h3 {
    font-size: 2.4rem;
    color: #ffffff;

    margin-bottom: 20px;
    font-family: var(--fuenteTitulos);
}

/* Estilo del texto */
.service-text p {
    color: #ffffff;
    font-family: var(--fuenteTitulos);
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* Estilo de los iconos */
.service-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    /* Espacio entre los iconos */
}
.service-item:hover .service-icons i {
    color: #ffffff;
}
.service-icons i {
    font-size: 40px;
    /* Tamaño de los iconos más grandes */
    color: var(--negro);
    transition: color 0.3s ease;
    /* Efecto en hover */
}

.tooltip {
    position: relative;
    cursor: pointer;
}

.tooltip:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 0;
    bottom: 150%;
    background: #333;
    color: #fff;
    padding: 8px;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    font-size: 14px;
}

a {
    color: #0056b3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Estilos responsivos */
@media (max-width: 1024px) {
    .service-items {
        grid-template-columns: repeat(2, 1fr);
        /* Dos columnas en tablets */
    }
}

@media (max-width: 768px) {
    .service-items {
        grid-template-columns: 1fr;
        /* Una columna en móviles */
    }
}

/* ACERCA DE NOSOTROS */
.sobre-nosotros__texto {
    text-align: justify;
    font-family: var(--fuenteTitulos);
    font-size: 1.6rem;
    line-height: 1.4;
}

/* Ajustamos el tamaño de la imagen para que no sobrepase el texto */
.sobre-nosotros__imagen {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
    border-radius: 8px;
    /* Bordes redondeados para un look moderno */
    
    /* Asegura que la imagen se recorte bien si no tiene la misma proporción */
 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 1);
    

}
/* Cuando la imagen entra en el viewport */
.sobre-nosotros__imagen.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Media query para pantallas más grandes */
@media (min-width: 768px) {
    .sobre-nosotros {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* Dos columnas de igual tamaño */
        column-gap: 2rem;
        align-items: center;
        /* Alineamos verticalmente el contenido */

    }

    .sobre-nosotros__imagen img {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        /* En pantallas grandes, la imagen puede ocupar más espacio */
        max-height: 600px;
        /* Limitar la altura para que la imagen no sea demasiado grande */

    }
}

/* Aseguramos que los botones se vean bien y estén centrados */
.button-container {
    margin-top: 20px;
    text-align: center;
}

.toggle-btn {
    background-color: var(--azulobs);
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-btn:hover {
    background-color: var(--verde);
}

/* Ocultar texto por defecto */
.hidden {
    display: none;

}

#about p {
    text-align: justify;
    line-height: 1.4;
}









/* Productos y Servicios */
.products-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content:space-evenly;
    padding: 20px 0;
    text-align: center;
    background-color: #ffffff;
}

.products-services h3 {
    width: 100%;
    text-align: center;
    /* Asegura que el título esté centrado */
    font-size: 3.1rem;
    font-weight: bold;
    margin-bottom: 30px;
    /* Espaciado inferior */
    color: var(--primario);
    /* Usar un color primario si lo tienes definido */
}

.product-service {
    width: 100%;
    max-width: 400px;
    background-color: var(--azulobs);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    /* Definimos una altura consistente para las tarjetas */
    height: 280px;
}

.product-service:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-service .title {
    font-size: 1.9rem;
    color: #ffffff;
    margin: 20px 0 10px;
    font-weight: bold;
    text-align: center;
    width: 100%;
}

.product-service .product-image {
    width: 100%;
    height: 200px;
    /* Controla la altura de la imagen */
    overflow: hidden;
}

.product-service .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-service:hover .product-image img {
    transform: scale(1.1);
}

/* Responsivo para dispositivos pequeños */
@media (max-width: 768px) {
    .product-service {
        width: 100%;
        /* Ocupa todo el ancho en dispositivos pequeños */
    }

    .product-service .product-image img {
        height: 200px;
        /* Mantén la altura fija en móviles también */
    }
}


.title {
    font-size: 3.7rem;
    font-family: var(--fuenteTitulos);
    padding: 2rem;
    color: #ffffff;
}

#services {
    background: linear-gradient(135deg, var(--azulobs) 0%, var(--azulobs) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}



/* Contenedor de Servicios */
.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 1.2rem;

}

.service-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 1);
    padding: 15px;
    text-align: center;
    width: 100%;
    max-width: 300px;
    height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.service-card h3 {
    font-size: 2.6rem;
    color: var(--primario);
    font-family: var(--fuenteTitulos);
}

.service-card img {
    border-radius: 10px;
    width: 100%;
    height: 180px;
    /* Tamaño fijo para todas las imágenes */
    object-fit: cover;
    /* Hace que las imágenes se recorten sin deformarse */
    border-radius: 8px;
}

.service-info {
    flex-grow: 1;
    /* Hace que el contenido se distribuya mejor */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card button {
    background-color: var(--primario);
    color: #ffffff;
    padding: 10px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 5px;
    margin-top: auto;
}

.service-card button:hover {
    background-color: var(--verde);
}

/* Modal */
.modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;

}

.modal h2 {
    color: var(--primario);
    font-size: 3rem;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    width: 60%;
    max-width: 600px;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

/* Imagen Principal del Modal */
#modal-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

/* Galería de Miniaturas */
.gallery {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s;
}

.thumbnail:hover {
    transform: scale(1.1);
}
@media (max-width: 768px) {
    .modal-content {
        width: 90%; /* Más ancho en móvil */
        max-width: 100%;
        padding: 15px;
    }

    #modal-image {
        max-height: 200px; /* Evita que la imagen sea demasiado grande */
    }
}

/* Ajustar espaciado en pantallas pequeñas */
@media (max-width: 768px) {
    .service-container {
        gap: 15px;
        /* Menos espacio en móviles */
        padding: 10px;
    }
}

.service-card {
    transition: transform 0.3s ease-in-out;
}

.service-card:hover {
    transform: scale(1.05);
}

.service-card img {
    transition: filter 0.3s ease;
}

.service-card:hover img {
    filter: brightness(0.8);
}

/* Sección de Logros Mejorada */
#logros h3{
    color:#FFFFFF;
}
.logros {
    padding: 30px 20px;
    background: linear-gradient(135deg, var(--azulobs) 0%, var(--azulobs) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Efecto de Partículas */
.logros::before {
   content:"";
    position: absolute;
    width: 100%;
    height: 100%;
    
    opacity: 0.5;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Contenedor de Logros */
.logros__contenedor {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 70px;
   
}
.container {
    position: relative;
    z-index: 2;
}

/* Tarjetas de Logros */
.logro {
    width: 250px;
    padding: 30px;
    border-radius: 15px;
    background: #ffffff;
    backdrop-filter: blur(10px);
    box-shadow: 0px 4px 15px rgb(0, 0, 0);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-align: center;
    position: relative;
}

/* Efecto de Hover */
.logro:hover {
    transform: translateY(-10px);
    box-shadow: 0px 6px 20px rgba(255, 208, 1, 0.753);
}

/* Iconos */
.logro__icono {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--azulobs), var(--primario));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    animation: pulse 2s infinite;
}

.logro__icono i {
    font-size: 30px;
    color: #ffffff;
}

/* Animación de Pulso */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.5);
    }
}

/* Contador */
.contador {
    font-size: 42px;
    font-weight: bold;
    color: var(--verde);
}

/* Texto */
.logro p {
    font-size: 18px;
    font-weight: 300;
    color:#000000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .logros__contenedor {
        flex-direction: column;
        align-items: center;
    }

    .logro {
        width: 80%;
    }
}




.clientes {
    background-color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.clientes .container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.clientes h3 {
    font-size: 3.1rem;
    margin-bottom: 30px;
    color: var(--primario);
}

/* Contenedor del carrusel */
.carrusel2-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

/* Carrusel */
.carrusel2 {
    display: flex;
    gap: 5rem;
    animation: scroll 20s linear infinite;
}

/* Ítems del carrusel */
.carrusel2-item {
    min-width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out;
}

.carrusel2-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

/* Efecto hover */
.carrusel2-item:hover img {
    transform: scale(1.1);
}

/* Animación del carrusel */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Media queries para ajustar la velocidad en dispositivos móviles */
@media (max-width: 1200px) {
    .carrusel2 {
        animation: scroll 15s linear infinite;
        gap: 3rem;
    }
    .carrusel2-item {
        min-width: 150px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .carrusel2 {
        animation: scroll 10s linear infinite;  /* Más rápido en móviles */
        gap: 2rem;
    }
    .carrusel2-item {
        min-width: 120px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .carrusel2 {
        animation: scroll 8s linear infinite;  /* Aún más rápido en pantallas pequeñas */
        gap: 1.5rem;
    }
    .carrusel2-item {
        min-width: 100px;
        height: 60px;
    }
}

/* Contact Section */
.contact {
    position: relative;
    padding:20px;
    text-align: center;
    /* Centra el contenido */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Oscurece la imagen */
    z-index: 1; /* Coloca la capa encima del fondo */
}
.contact * {
    position: relative;
    z-index: 2;
}
.contact h2 {
    font-size: 3.1rem;
    margin-bottom: 20px;
    color: var(--primario);
    /* Color elegante */
}

.contact p {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ffffff;
    font-family: var(--fuenteTitulos);
    line-height: 1.4;

}



.btn-whatsapp {
    display: inline-block;
    margin-bottom: 30px;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    /* Centra el formulario */
    text-align: left;
    /* Alinea etiquetas e inputs a la izquierda */
}

.contact form .form-group {
    margin-bottom: 20px;
}

.contact form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--primario);
}

.contact form input,
.contact form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--azulobs);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--gris);
    background-color: #f9fafb;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact form input:focus,
.contact form textarea:focus {
    border-color: var(--verde);
    box-shadow: 0 0 5px rgba(0, 0, 0, 2);
    outline: none;
}

.contact form button {
    width: 100%;
    max-width: 200px;
    background-color: var(--primario);
    color: #ffffff;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1.3rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 0 auto;
    display: block;
}

.contact form button:hover {
    background-color: var(--azulobs);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact h2 {
        font-size: 3.1rem;
    }

    .contact p {
        font-size: 1.6rem;
    }

    .contact-info li {
        font-size: 1.5rem;
    }

    .contact form button {
        width: 100%;
    }
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background-color: var(--azulobs);
    color: #fff;
    font-size: 1.4rem;
    font-family: var(--fuenteTitulos)
}

@media screen and (max-width: 768px) {
    .service-items {
        flex-direction: column;
        align-items: center;
    }

    .gallery-items {
        flex-direction: column;
        align-items: center;
    }

    .gallery-items img {
        width: 80%;
    }
}

/* Responsive menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.btn-whatsapp {
    display: inline-block;
    background-color: #25D366;
    /* Color verde de WhatsApp */
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
    margin: 0;
}

.btn-whatsapp:hover {
    background-color: #1EBE56;
    /* Color verde más oscuro al pasar el cursor */
}

.btn-whatsapp:active {
    background-color: #128C7E;
    /* Color al hacer clic */
}

/* Contact Bar Section */
.contact-bar {
    background-color: #242424;
    /* Mismo color del footer */
    color: #ffffff;
    padding: 20px 10px;
    font-family: var(--fuenteTitulos);
}

.contact-bar .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    flex: 1 1 auto;
    justify-content: center;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--verde);
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primario);
}

.separator {
    height: 20px;
    width: 1px;
    background-color: #ffffff;
    align-self: stretch;
    display: none;
}

.social-icons a {
    margin-left: 10px;
    color: #ffffff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #0066cc;
}

/* Responsive Design */
@media (min-width: 768px) {
    .contact-bar .container {
        flex-wrap: nowrap;
    }

    .separator {
        display: block;
    }
}

@media (max-width: 767px) {
    .contact-bar .container {
        flex-direction: column;
    }

    .contact-item {
        justify-content: center;
        text-align: center;
    }
}


