        /* Variables y estilos generales */
        :root {
            --azul-principal: #1A237E; /* Azul oscuro del logo */
            --naranja-secundario: #FF8C00; /* Naranja del logo */
            --blanco: #FFFFFF;
            --negro: #000000;
            --gris-oscuro: #333333; /* Texto principal oscuro */
            --gris-claro-fondo: #F4F4F9;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--gris-oscuro);
            background-color: var(--blanco);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        h1, h2, h3, h4 {
            color: var(--azul-principal);
        }
        
        /* Botones */
        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            text-decoration: none;
            font-weight: 600;
            border-radius: 50px;
            transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
        }

        .btn:hover {
            transform: translateY(-3px);
        }

        .btn-primary {
            background-color: var(--naranja-secundario);
            color: var(--blanco);
            border: 2px solid var(--naranja-secundario);
        }

        .btn-primary:hover {
            background-color: var(--azul-principal);
            color: var(--blanco);
            border-color: var(--azul-principal);
        }
        
        /* Botones para modo claro */
        .btn-primary-light {
            background-color: var(--azul-principal);
            color: var(--blanco);
            border: 2px solid var(--azul-principal);
        }

        .btn-primary-light:hover {
            background-color: var(--blanco);
            color: var(--azul-principal);
            border-color: var(--azul-principal);
        }

        /* Header y navegación */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            background-color: transparent;
            z-index: 1000;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }
        
        .main-header.scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .main-header.scrolled .main-nav ul li a, .main-header.scrolled .hamburger-menu {
            color: var(--gris-oscuro);
        }

        .main-header .logo img {
            height: 50px;
            width: auto;
        }
        
        .hamburger-menu {
            display: none;
        }
        
        .main-nav ul {
            display: flex;
            list-style: none;
        }

        .main-nav ul li a {
            padding: 0.5rem 1rem;
            color: var(--blanco);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        .main-nav ul li a:hover {
            color: var(--naranja-secundario);
        }
        
        .main-nav .btn {
            padding: 0.75rem 1.5rem;
            font-size: 0.9rem;
        }

        /* Hero Section - Carrusel */
        .hero-section {
            height: 80vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--blanco);
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../hero.jpg') no-repeat center center/cover;
            background-attachment: fixed;
            filter: brightness(0.4);
            z-index: -1;
        }

        .carousel-inner {
            display: flex;
            transition: transform 0.5s ease-in-out;
            width: 100%;
            position: absolute;
        }

        .carousel-item {
            min-width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
        }

        .carousel-item h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            color: var(--blanco);
        }

        .carousel-item p {
            font-size: 1.15rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            color: var(--blanco);
        }

        .hero-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .hero-nav .dot {
            width: 12px;
            height: 12px;
            background-color: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .hero-nav .dot.active {
            background-color: var(--naranja-secundario);
        }
        
        /* Secciones */
        section {
            padding: 5rem 0;
            position: relative;
            z-index: 1;
        }
        
        section h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 2rem;
            font-weight: 600;
        }
        
        /* Sección "Sobre Nosotros" */
        .about-section {
            background-color: var(--blanco);
            text-align: center;
        }

        .about-section p {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        /* Sección de Beneficios */
        .benefits-section {
            text-align: center;
            background-color: var(--gris-claro-fondo);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .benefit-card {
            background-color: var(--blanco);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
        }

        .benefit-card i {
            font-size: 3rem;
            color: var(--naranja-secundario);
            margin-bottom: 1rem;
        }

        .benefit-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        /* Sección de Proceso */
        .process-section {
            background-color: var(--azul-principal);
            color: var(--blanco);
            text-align: center;
        }

        .process-section h2, .process-section h3 {
            color: var(--blanco);
        }

        .process-steps {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            margin-top: 3rem;
        }

        .step {
            max-width: 250px;
            text-align: center;
        }
        
        .step h3 {
            color: var(--naranja-secundario);
        }

        .step i {
            font-size: 2.5rem;
            color: var(--naranja-secundario);
            margin-bottom: 1rem;
        }

        .step h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }

        /* Sección de Tarifas */
        .rates-section {
            background-color: var(--blanco);
        }

        .rates-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 2rem;
            font-size: 1.1rem;
        }

        .rates-table th, .rates-table td {
            padding: 1.5rem;
            border-bottom: 1px solid #ddd;
            text-align: left;
        }

        .rates-table th {
            background-color: var(--azul-principal);
            color: var(--blanco);
            font-weight: 600;
        }

        .rates-table tr:nth-child(even) {
            background-color: var(--gris-claro-fondo);
        }
        
        /* Sección de Paralaje */
        .parallax-section {
            background-image: url('../hero3.jpg');
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
        }

        .parallax-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .parallax-content {
            z-index: 2;
            color: var(--blanco);
        }

        .parallax-content h3 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--blanco);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .parallax-content p {
            font-size: 1.25rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        /* Sección de FAQ */
        .faq-section {
            background-color: var(--gris-claro-fondo);
        }

        .faq-list {
            margin-top: 2rem;
        }

        .faq-item {
            margin-bottom: 1.5rem;
            border-bottom: 1px solid #ddd;
            padding-bottom: 1rem;
        }
        
        .faq-item summary {
            font-weight: 600;
            font-size: 1.2rem;
            cursor: pointer;
            padding: 1rem 0;
            position: relative;
            outline: none;
            color: var(--gris-oscuro);
        }
        
        .faq-item summary::marker {
            content: none;
        }

        .faq-item summary::before {
            content: '+';
            position: absolute;
            right: 0;
            font-size: 1.5rem;
            font-weight: bold;
            transition: transform 0.3s ease;
            color: var(--naranja-secundario);
        }
        
        .faq-item[open] summary::before {
            content: '-';
        }
        
        .faq-item p {
            padding: 1rem 0;
        }
        
        /* Sección de CTA */
        .cta-section {
            background-color: var(--blanco);
            text-align: center;
        }
        
        /* Footer */
        .main-footer {
            background-color: var(--azul-principal);
            color: var(--blanco);
            padding: 4rem 0 2rem;
            font-size: 0.9rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-column h4 {
            color: var(--naranja-secundario);
            margin-bottom: 1rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li a {
            color: var(--blanco);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: var(--naranja-secundario);
        }

        .social-icons a {
            color: var(--blanco);
            font-size: 1.5rem;
            margin-right: 1rem;
            transition: color 0.3s ease;
        }

        .social-icons a:hover {
            color: var(--naranja-secundario);
        }

        .footer-bottom {
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 1rem;
        }
        
        /* Mobile-friendly (responsive) styles */
        @media (max-width: 768px) {
            .main-header {
                padding: 1rem;
                background-color: rgba(255, 255, 255, 0.95);
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            }

            .main-header .btn-primary-light {
                display: none;
            }

            .main-nav {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(255, 255, 255, 0.95);
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                transition: transform 0.3s ease-in-out;
            }

            .main-nav.nav-active {
                display: flex;
                transform: translateY(0);
            }

            .main-nav ul {
                flex-direction: column;
                padding: 1rem;
            }
            
            .main-nav ul li a {
                display: block;
                padding: 1rem;
                text-align: center;
                border-bottom: 1px solid #eee;
                color: var(--gris-oscuro);
            }
            
            .main-nav ul li:last-child a {
                border-bottom: none;
            }

            .hamburger-menu {
                display: block;
                background: none;
                border: none;
                color: var(--gris-oscuro);
                font-size: 1.5rem;
                cursor: pointer;
            }

            .main-header .btn-primary {
                display: none;
            }

            .hero-section {
                height: 70vh;
            }

            .carousel-item h1 {
                font-size: 1.8rem;
            }

            .carousel-item p {
                font-size: 0.9rem;
            }
            
            .process-steps {
                flex-direction: column;
                align-items: center;
            }

            .step {
                margin-bottom: 2rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-column ul {
                padding-left: 0;
            }

            .social-icons {
                margin-top: 1rem;
            }
            
    .rates-table thead {
        display: none; /* AGREGAR ESTA LÍNEA para ocultar las cabeceras en móvil */
    }

    .rates-table, .rates-table tbody, .rates-table tr, .rates-table td {
        display: block; /* Asegura que todos los elementos de la tabla se comporten como bloques */
        width: 100%;
    }

    .rates-table tr {
        margin-bottom: 1rem;
        border: 1px solid #ddd;
        border-radius: 5px;
        overflow: hidden;
    }

    .rates-table td {
        padding: 1rem;
        text-align: left;
        border-bottom: 1px solid #eee; /* Opcional: añade un borde entre celdas */
    }

    .rates-table td:last-child {
        border-bottom: none; /* Quita el borde de la última celda para evitar duplicidad */
    }

    .rates-table td::before {
        content: attr(data-label);
        font-weight: bold;
        display: block;
        color: var(--azul-principal); /* Opcional: color para las etiquetas */
        margin-bottom: 0.3rem;
    }
        }

.sticky-whatsapp {
    text-decoration: none;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000; /* Asegura que esté por encima de otros elementos */
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #50c100;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Opcional: añade una sombra para mayor visibilidad */
}

.sticky-whatsapp:hover {
    background: #337405;
}

.sticky-whatsapp i {
    font-size: 30px;
    color: #fff;
}

