/* Paleta de Colores de la Propuesta [1] */
        :root {
            --color-principal-cta: #E65A10; /* Naranja, para ícono y CTA */
            --color-texto-oscuro: #000000;
            --color-fondo-claro: #E3DFDC;
        }
        .bg-orange-cta { background-color: var(--color-principal-cta) !important; }
        .text-orange-cta { color: var(--color-principal-cta) !important; }
        .btn-cta-primary {
            background: linear-gradient(45deg, var(--color-principal-cta), #ff8c42);
            border: none;
            color: white;
            padding: 1rem 2rem;
            font-size: 1.25rem;
            font-weight: bold;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(230, 90, 16, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-cta-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(230, 90, 16, 0.4);
            background: linear-gradient(45deg, #ff8c42, var(--color-principal-cta));
            color: white;
        }
        
        .btn-cta-primary .btn-glow {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }
        
        .btn-cta-primary:hover .btn-glow {
            left: 100%;
        }
        
        /* Fondo moderno con gradiente */
        body {
            background: linear-gradient(135deg, #E3DFDC 0%, #2c2c2c 50%, #181817 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        
        /* Navbar sticky con z-index alto */
        #mainNav {
            z-index: 1030;
        }
        
        /* Contenido sobre el fondo */
        header, section, footer {
            position: relative;
            z-index: 1;
        }
        
        /* Efecto sutil de textura */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(230, 90, 16, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(230, 90, 16, 0.1) 0%, transparent 50%);
            z-index: -1;
            pointer-events: none;
        }
        
        /* Estilos para la sección dashboard */
        .dashboard-features {
            background-color: transparent;
        }
        
        .dashboard-features .list-group-item {
            background-color: transparent;
            border: none;
            padding: 0.75rem 0;
            transition: transform 0.2s ease;
        }
        
        .dashboard-features .list-group-item:hover {
            transform: translateX(5px);
        }
        
        .dashboard-icon {
            width: 20px;
            text-align: center;
        }
        
        .carousel-container {
            background: white;
            border-radius: 0.5rem;
            box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
            border: 1px solid rgba(0, 0, 0, 0.125);
        }
        
        .carousel-image {
            max-height: 400px;
            object-fit: cover;
            border-radius: 0.375rem;
        }
        
        /* Estilos para Google Forms Integration */
        .google-forms-container {
            background: white;
            border-radius: 0.5rem;
            overflow: hidden;
            box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
        }
        
        .google-forms-container iframe {
            background: white;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .google-forms-container {
                min-height: 700px;
            }
        }
        
        /* Botón Animado ¿Cómo funciona? */
        .btn-how-it-works {
            background: linear-gradient(45deg, var(--color-principal-cta), #ff8c42);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            text-decoration: none;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(230, 90, 16, 0.3);
            animation: float 3s ease-in-out infinite;
        }
        
        .btn-how-it-works:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(230, 90, 16, 0.4);
            background: linear-gradient(45deg, #ff8c42, var(--color-principal-cta));
        }
        
        .btn-how-it-works .btn-text {
            position: relative;
            z-index: 2;
        }
        
        .btn-how-it-works .fas {
            transition: transform 0.3s ease;
        }
        
        .btn-how-it-works:hover .fas {
            transform: translateY(3px);
        }
        
        .btn-glow {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }
        
        .btn-how-it-works:hover .btn-glow {
            left: 100%;
        }
        
        .btn-pulse {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            border-radius: 50px;
            background: var(--color-principal-cta);
            opacity: 0;
            animation: pulse 2s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
        }
        
        @keyframes pulse {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.3;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.1);
                opacity: 0.1;
            }
            100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.3;
            }
        }
        header, section, footer {
            position: relative;
            z-index: 1;
        }
        
        /* Efecto sutil de textura */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
        }