    @import url('https://fonts.googleapis.com/css2?family=Caladea:ital,wght@0,400;0,700;1,400;1,700&display=swap');

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Calibri', sans-serif;
        text-decoration: none;
    }

    body {
        background-color: #000000; 
        font-family: Caladea, sans-serif; 
    }

    .slider {
        width: 100%;
        max-width: 700px;
        aspect-ratio: 16 / 9; /* Mantén la proporción 16:9 */
        margin: auto;
        position: relative;
        overflow: hidden; /* Oculta las imágenes fuera del área visible */
    }
    
    .slider .list {
        display: flex; /* Alinea las imágenes en una fila horizontal */
        transition: transform 0.75s ease-in-out; /* Transición suave al mover el slider */
        width: 100%; /* Ancho inicial, será ajustado dinámicamente */
    }
    
    
    .slider .item {
        flex: 0 0 100%; /* Cada imagen ocupa el 100% del ancho del slider */
        width: 100%; /* Ajuste dinámico según el slider */
        height: auto;
    }

    .slider .item img {
        width: 100%; /* La imagen ocupa todo el contenedor */
        height: 100%;
        object-fit: cover; /* Mantiene proporción sin distorsionar */
    }

    .slider .list img {
        flex: 0 0 100%; /* Cada imagen ocupa el 100% del slider */
        width: 100%;
        height: 100%;
        object-fit: cover; /* Mantiene proporción de las imágenes */
    }
    
    .slider .buttons {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
        z-index: 10;
    }
    
    .slider .buttons button {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.5);
        color: #fff;
        border: none;
        font-family: monospace;
        font-weight: bold;
        cursor: pointer;
    }
    
    .slider .dots {
        position: absolute;
        bottom: 10px;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 10px;
        z-index: 10;
    }
    
    .slider .dots li {
        list-style: none;
        width: 10px;
        height: 10px;
        background-color: #fff;
        border-radius: 50%;
        transition: 0.3s ease;
        cursor: pointer;
    }
    
    .slider .dots li.active {
        width: 30px;
    }
    
    @media (max-width: 768px) {
        .slider {
            max-width: 100%;
            margin: 10px;
            gap: 10px;
        }
    
        .slider .buttons button {
            width: 40px;
            height: 40px;
        }


    }
    

    .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .swiper-button-prev::after {
        font-size: 25px;
    }

    .swiper-button-next::after {
        font-size: 25px;
    }

    .swiper-button-next {
        font-size: 25px;
    }

    .swiper-button-prev {
        color: #DB241B;
    }

    .swiper-button-next {
        color: #DB241B;
    }

    .swiper-pagination-bullet {
        background: #ffffff;
        opacity: 1;
    }

    .swiper-pagination-bullet-active {
        background: #ffffff;
    }

    html {
        height: 100%; /* Asegura que html también ocupe toda la altura */
    }
    a {
        text-decoration: none;
        color: inherit; /* Los enlaces no tendrán color ni subrayado */
    }

    /* Otros estilos para el contenido de la página */
    h1 {
        font-size: 5rem;
        margin-bottom: 15px;
    }

    p {
        font-size: 1rem;
        color: #ffffff; /* Texto un poco más claro para el párrafo */
    }

    /* Navegación */
    
    .nav {
        background-color: #ffffff;
        color: rgb(0, 0, 0);
        padding: 10px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: sticky;
        top: 0;
        z-index: 1000;
        left: 10px;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .nav-links {
        display: flex;
        gap: 20px;
    }


    .menu-action {
        display: flex;
        gap: 20px;
    }

    .menu-action__item {
        position: relative;
    }

    .nav-drop {
        background: none;
        border: none;
        color: #E7203D;
        font-size: 1rem;
        padding: 10px 15px;
        cursor: pointer;
        position: relative;
        transition: color 0.3s;
        font-size: 2rem;
        margin-bottom: 1px;
    }

    .nav-drop::after {
        content: "";
        display: block;
        height: 2px;
        width: 0;
        background-color: #ff0202;
        position: absolute;
        bottom: 0;
        left: 50%;
        transition: width 0.3s, left 0.3s;
    }

    .nav-drop:hover::after {
        width: 100%;
        left: 0;
    }

    .nav-drop:hover {
        color: #3140b2;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        top: 40px;
        left: 0;
        background-color: #9eafc0;
        min-width: 160px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        z-index: 1;
    }

    .dropdown-content a {
        color: rgb(255, 255, 255);
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

    .dropdown-content a:hover {
        background-color: #ff0000;
        color: black;
    }

    .menu-action__item.active .dropdown-content {
        display: block;
    }

    .nav-button {
        background: #F7A7A5;
        color: rgb(72, 60, 60);
        border: none;
        padding: 20px 40px;
        border-radius: 10px;
        cursor: pointer;
        transition: background 0.3s;
        font-size: 18px;
        display: inline-block;
        font-family: 'Calibri', sans-serif;
    }

    .nav-button:hover {
        background: #DCE4FF;
    }

    /* Asegúrate de que el contenedor del carrusel y sus elementos estén visibles */
    .mySwiper-1 {
        position: relative; /* Asegura un contexto de posición para los hijos */
        z-index: 10; /* Ponlo encima del header */
    }

    /* Encabezado */
    .header {
        position: relative;
        z-index: 5;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding: 50px 20px;
        background-image: linear-gradient(to left, rgba(53, 53, 53, 0.747), rgba(158, 158, 158, 0)), url('../Imagenes/3409297.jpg');
        background-size: cover; /* Asegura que la imagen cubra todo el área */
        background-position: center; /* Centra la imagen */
        background-repeat: no-repeat; /* Evita que se repita */
        background-size: cover;
        background-position: center;
        text-align: center;
    }
    

    .header-content {
        max-width: 600px;
    }
    .header-title {
        font-size: 2.5rem;
        color: #f3f3f3;
        text-shadow: 15px 15px 30px rgb(0, 0, 0); /* Sombra para resaltar */
        text-align: left; /* Alinea el texto a la izquierda */
        margin-left: 120px; /* Asegura que no haya margen a la izquierda */
    }


    .header-subtitle {
        font-size: 1.2rem;
        color: #ffffff;
        margin: 10px 0;
        text-shadow: 4px 4px 8px rgba(0, 0, 0, 1); /* Sombra para resaltar */
        text-align: left; /* Alinea el texto a la izquierda */
        margin-left: 120px; /* Asegura que no haya margen a la izquierda */
    }

    /* Secciones */
    .section-title {
        margin: 0px;
        padding: 15px;
        background-color: #ffffff;
        font-size: 3rem;
        color: #000000;
        margin-bottom:0px;
        text-align: center;
    }

    .section-description {
        margin: 0px;
        padding: 5px;
        background-color: #ffffff;
        text-align: center;
        color: #000000;
        font-size: 1.1rem;
        margin-bottom: 0px;
    }

    .grid-container {
        padding: 10px;
    }

    .grid-item {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1px;
        margin: 0px;
        background: #ffffff; 
        padding: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .grid-item:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }

    .grid-item h3 {
        font-size: 1.5rem;
        color: #003366;
        margin-bottom: 0px;
    }

    .grid-item p {
        font-size: 1rem;
        color: #666;
    }   

    .services {
        padding: 20px 10px;
        text-align: center;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 10px;
        margin-top: 1px;
    }

    .service-card {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 10 5px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }

    .service-card h3 {
        font-size: 1.5rem;
        color: #2d363e;
        margin-bottom: 0px;
    }

    .service-card p {
        font-size: 1rem;
        color: #666;
    }
    .contact-form button:hover {
        background-color: #005599;
    }


    /* Botón de WhatsApp */
    .whatsapp-button {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 75px;
        height: 75px;
        background: #25D366;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 4 8px 16px rgba(0, 0, 0, 0.1);
        z-index: 9999;
        transition: transform 0.3s ease;
    }

    .whatsapp-button:hover {
        transform: scale(1.1);
    }

    .whatsapp-button img {
        width: 35px;
        height: 35px;
    }

    .map´{
        width: 100%;
        height: 400px;
        margin-top: 20px;
    }

    /* Pie de Página */
    .footer {
        background: #003366;
        color: rgb(255, 10, 10);
        text-align: center;
        padding: 20px;
        font-size: 0.9rem;
    }

        @media (max-width: 768px) {
        .nav {
                flex-direction: row;
                padding: 15px;
            }
    
        .nav-container {
            flex-direction: column;
            align-items: flex-start;
        }
    
        .nav-links {
            flex-direction: row;
            gap: 10px;
            width: 100%;
        }
    
        .menu-action {
            flex-direction: row;
            gap: 10px;
            width: 100%;
        }
    
        .menu-action__item {
            width: 100%;
        }
    
        .dropdown-content {
            position: static;
            box-shadow: none;
            background-color: #9eafc0;
            width: 100%;
        }
    
        .dropdown-content a {
            padding: 10px;
            text-align: left;
        }
    
        .nav-logo {
            margin: auto;
            padding: auto;
        }
    
        .nav-drop {
            font-size: 1.5rem;
        }

        .header {
            position: relative;
            z-index: 5;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            margin: 1px;
            padding: 5px;
            background-image: linear-gradient(to top, rgb(0, 0, 0), rgba(158, 158, 158, 0)), url('../Imagenes/3409297.jpg');
            background-size: cover; /* Asegura que la imagen cubra todo el área */
            background-position: center; /* Centra la imagen */
            background-repeat: no-repeat; /* Evita que se repita */
            height: 500px;
            text-align: center;
            gap: 10px;
            
        }
        
        .header-title {
        font-size: 2.5rem;
        color: #f3f3f3;
        text-shadow: 15px 15px 30px rgb(0, 0, 0); /* Sombra para resaltar */
        text-align: left; /* Alinea el texto a la izquierda */
        margin: 0px;
        }
        
        .header-subtitle {
            font-size: 1.5rem;
            margin: 0px;
        }

    }
    