.form-container {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(5px);
            border-radius: 0.5rem;
            padding: 1.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            position: relative;
            max-height: 90vh; /* Limitar altura al 90% del viewport */
            overflow-y: auto; /* Permitir desplazamiento interno */
        }
        /* Estilos para el contador */
        #visit-counter {
            transition: all 0.3s ease;
        }
        .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #facc15; /* Amarillo */
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        /* Estilos para el iframe de Mailrelay */
        .mailrelay-iframe {
            width: 100%;
            min-height: 300px; /* Reducido para escritorio */
            border: none;
            overflow-y: auto; /* Respaldo para navegadores */
        }
        /* Estilos para el sidebar del formulario */
        .form-sidebar {
            position: fixed;
            top: 50%;
            right: 1rem;
            transform: translateY(-50%);
            width: 300px;
            z-index: 1000;
            display: none; /* Oculto por defecto */
        }
        /* Estilos para el formulario móvil */
        .form-mobile {
            display: none; /* Oculto por defecto */
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 500px;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
            padding: 1rem;
            border-radius: 0.5rem;
        }
        /* Ajustes para pantallas pequeñas en escritorio */
        @media (max-height: 800px) {
            .form-sidebar .form-container {
                padding: 1rem; /* Reducir padding */
            }
            .form-sidebar .mailrelay-iframe {
                min-height: 350px; /* Reducir altura del iframe */
            }
            .form-sidebar .form-container h3 {
                font-size: 1.25rem; /* Reducir tamaño del título */
            }
            .form-sidebar .form-container p {
                font-size: 0.875rem; /* Reducir tamaño del texto */
            }
        }
        @media (max-width: 1024px) {
            .form-sidebar {
                display: none; /* Ocultar en móviles, usar form-mobile */
            }
            .form-mobile {
                display: none; /* Oculta por defecto hasta que se activa */
            }
            .mailrelay-iframe {
                min-height: 350px; /* Ajuste para móviles */
            }
        }
        /* Estilos para el botón flotante */
        .floating-button {
            position: fixed;
            top: 50%;
            right: 1rem;
            transform: translateY(-50%);
            background-color: #facc15;
            color: #1e3a8a;
            font-weight: bold;
            padding: 1rem 1.5rem;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            z-index: 2000;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .floating-button:hover {
            transform: translateY(-50%) scale(1.1);
        }
        /* Estilos para el botón de cerrar */
        .close-form {
            position: sticky;
            top: 0.5rem;
            right: 0.5rem;
            font-size: 1.5rem;
            cursor: pointer;
            color: #1e3a8a;
            z-index: 1001; /* Asegurar que esté por encima del contenido */
        }
        /* Estilos para el logo en la navegación */
        .nav-logo {
            height: 40px;
        }
        /* Estilos para la navegación fija */
        nav {
            position: sticky;
            top: 0;
            z-index: 20;
        }
        /* Estilos para la sección de planes */
        .plans {
            padding: 4rem 0;
            background-color: #fff;
            width: 100%;
        }
        .plans h2 {
            text-align: center;
            font-size: 2.25rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
        }
        .plans .subtext {
            text-align: center;
            color: #4b5563;
            margin-bottom: 2rem;
            max-width: 48rem;
            margin-left: auto;
            margin-right: auto;
        }
        .plan-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 72rem;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .plan {
            background-color: #f9fafb;
            padding: 1.5rem;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-align: center;
        }
        .plan-premium {
            background-color: #fef3c7;
        }
        .plan h3 {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }
        .plan .price {
            font-size: 2rem;
            font-weight: bold;
            color: #1e3a8a;
            margin-bottom: 1rem;
        }
        .plan a {
            display: inline-block;
            background-color: #facc15;
            color: #1e3a8a;
            font-weight: bold;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            margin-top: 1rem;
            transition: background-color 0.3s ease;
        }
        .plan a:hover {
            background-color: #eab308;
        }
        /* Estilos para la sección de preventa */
        .preventa {
            padding: 4rem 0;
            background-color: #f3f4f6;
            width: 100%;
        }
        .preventa-container {
            max-width: 72rem;
            margin: 0 auto;
            padding: 0 1rem;
            text-align: center;
        }
        .preventa h2 {
            font-size: 2.25rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
        }
        .preventa p {
            color: #4b5563;
            margin-bottom: 1.5rem;
        }
        .preventa ul {
            list-style: none;
            margin-bottom: 2rem;
            text-align: left;
            max-width: 48rem;
            margin-left: auto;
            margin-right: auto;
        }
        .preventa ul li {
            color: #4b5563;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
        }
        .preventa ul li::before {
            content: '✅';
            margin-right: 0.5rem;
        }
        .preventa a {
            display: inline-block;
            background-color: #facc15;
            color: #1e3a8a;
            font-weight: bold;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            transition: background-color 0.3s ease;
        }
        .preventa a:hover {
            background-color: #eab308;
        }
        /* Estilos para FAQs */
        .toggle-faq {
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .toggle-faq:hover {
            background-color: #e5e7eb;
        }
        /* Estilos para cookies */
        #cookie-banner {
        display: none;
        z-index: 3000; /* Aumentado para estar por encima del botón flotante (z-index: 2000) */
        }
        #cookie-banner.show {
        display: block;
        }