/* Reset de márgenes y rellenos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo general del cuerpo */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Navegación */
header {
    background: #4CAF50;
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

/* Contenedor para agrupar el teléfono y redes sociales */
.nav-contact-social {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Alinea el contenido a la derecha */
    flex-wrap: wrap; /* Permite que los elementos se ajusten en varias líneas si es necesario */
}

/* Estilo para el teléfono */
.nav-contact-info {
    margin-right: 10px; /* Espacio entre el teléfono y las redes sociales */
}

.nav-contact-info a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-contact-info i {
    margin-right: 5px;
    font-size: 20px;
    color: #fff;
}

/* Estilo para los íconos de redes sociales */
.social-icons {
    display: flex;
    gap: 10px; /* Espacio entre los íconos */
}

.social-icons a {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
}

.social-icons a:hover {
    color: #ddd; /* Cambia a un gris claro al pasar el cursor */
}

/* Botón Flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.whatsapp-float i {
    margin-top: 15px;
}

/* Hero Section */
.hero {
    position: relative;
    background: url('images/hero-bg.webp') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay oscuro con 50% de opacidad */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Asegura que el texto esté encima del overlay */
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    background: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background: #45a049;
}

/* Sección de "Sobre Nosotros" */
.about {
    padding: 60px 20px;
    background: #f4f4f4;
    color: #333;
}

.about .container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    padding-right: 20px;
}

.about-text h2 {
    font-size: 36px;
    color: #4CAF50;
    margin-bottom: 30px; /* Aumenta el margen inferior para dar más espacio */
    font-family: 'Arial', sans-serif;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    font-family: 'Georgia', serif;
}

.about-text strong {
    color: #4CAF50;
}

.about-image {
    flex: 1;
    max-width: 500px;
    text-align: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Ajustes específicos para móviles */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column; /* Cambia la disposición a columna para móviles */
        text-align: center; /* Centra el texto para móviles */
    }

    .about-text {
        padding-right: 0; /* Elimina el padding derecho en móviles */
        margin-bottom: 20px;
    }

    .about-image img {
        max-width: 80%; /* Ajusta el tamaño de la imagen para móviles */
        margin: 0 auto; /* Centra la imagen */
    }
}

/* Servicios */
.services {
    padding: 60px 20px;
    background: #e0f7fa; /* Fondo suave de color cian claro */
}

.services .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    color: #4CAF50;
    margin-bottom: 40px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    max-width: 300px;
    text-align: left;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 24px;
    color: #4CAF50;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 16px;
    color: #555;
}

/* Contacto */
.contact {
    position: relative;
    padding: 60px 20px;
    background: url('images/contact-bg.webp') no-repeat center center/cover;
    color: #fff;
    text-align: center;
}

.contact .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Oscurece la imagen con una superposición */
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
}

.contact p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 20px;
}

.contact-info {
    text-align: left;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #fff;
}

.contact-info i {
    color: #4CAF50;
    font-size: 24px;
    margin-right: 10px;
}

.contact-info a {
    color: #4CAF50;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info .fab.fa-whatsapp {
    color: #25D366;
}

.contact-info a:hover .fab.fa-whatsapp {
    color: #128C7E;
}

/* Redes Sociales */
.social-media {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-media a {
    color: #fff;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #4CAF50; /* Cambia el color al pasar el cursor por encima */
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #4CAF50;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.footer-links li {
    display: inline;
    margin-right: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

footer p {
    margin-bottom: 10px;
    font-size: 14px;
}

/* Compliance */
.compliance {
    padding: 60px 20px;
    background: #f9f9f9; /* Fondo suave */
    color: #333;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Sombra para resaltar la sección */
}

.compliance .container {
    max-width: 1200px;
    margin: 0 auto;
}

.compliance-content {
    text-align: center;
    padding: 20px; /* Espacio interno para mejor apariencia */
}

.compliance h2 {
    font-size: 36px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.compliance p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    text-align: justify; /* Alinear el texto de forma justificada */
}

.compliance strong {
    color: #4CAF50;
}

.compliance-list {
    text-align: left;
    margin: 30px auto;
    max-width: 800px;
    list-style: none; /* Elimina las viñetas */
    padding: 0;
}

.compliance-list li {
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start; /* Asegura que el texto esté alineado correctamente con los iconos */
    gap: 10px; /* Añade un espacio entre el icono y el texto */
}

.compliance-list li i {
    color: #4CAF50;
    font-size: 24px;
    flex-shrink: 0; /* Evita que el icono cambie de tamaño */
}

.compliance-list li p {
    margin: 0;
    flex: 1;
}

.compliance-list li strong {
    color: #4CAF50;
    font-weight: bold;
}

/* Cobertura en Puebla */
.coverage {
    padding: 60px 20px;
    background: #f4f4f4;
}

.coverage .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.coverage h2 {
    font-size: 36px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.coverage p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.coverage-zones {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; /* Ajusta la alineación para que sea más equilibrada */
    gap: 20px;
}

.zone {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex: 1;
    max-width: 220px;
    min-width: 200px; /* Asegura un ancho mínimo para móviles */
    text-align: left; /* Alineación del texto a la izquierda */
}

.zone h3 {
    font-size: 24px;
    color: #4CAF50;
    margin-bottom: 15px;
}

.zone ul {
    list-style: none;
    padding-left: 0;
    font-size: 16px;
    color: #555;
}

.zone ul li {
    margin-bottom: 10px;
}

/* Ajustes específicos para móviles */
@media (max-width: 768px) {
    .coverage-zones {
        flex-direction: column; /* Cambia la disposición a columna para móviles */
        align-items: center; /* Centra las tarjetas */
    }

    .zone {
        max-width:
