* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            background: #fff;
            padding-top: 70px;
        }

        /* Top Banner */
        .top-banner {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(135deg, #000000 0%, #ff0000 100%);
            color: white;
            padding: 15px 20px;
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
        }

        .banner-text {
            font-weight: 700;
            font-size: 1.1rem;
            text-align: center;
            animation: pulse-text 2s infinite;
        }

        @keyframes pulse-text {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        .banner-countdown {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .banner-time {
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 12px;
            border-radius: 8px;
            font-weight: 800;
            font-size: 1.2rem;
            min-width: 50px;
            text-align: center;
            backdrop-filter: blur(10px);
        }

        .banner-separator {
            font-weight: 800;
            font-size: 1.2rem;
        }

        /* Floating CTA Button */
        .floating-cta {
            position: fixed;
            bottom: 30px;
            left: 50%;
            z-index: 9998;
            opacity: 0;
            transform: translate(-50%, 100px);
            transition: all 0.5s ease;
        }

        .floating-cta.visible {
            opacity: 1;
            transform: translate(-50%, 0);
        }

        .floating-cta-button {
            background: linear-gradient(135deg, #ff0080 0%, #ff8c00 100%);
            color: white;
            padding: 20px 35px;
            font-size: 1.2rem;
            font-weight: 800;
            border-radius: 50px;
            text-decoration: none;
            box-shadow: 0 10px 40px rgba(255, 0, 128, 0.5);
            display: flex;
            align-items: center;
            gap: 10px;
            animation: float-pulse 2s infinite;
            border: 3px solid white;
        }

        @keyframes float-pulse {
            0%, 100% { transform: scale(1); box-shadow: 0 10px 40px rgba(255, 0, 128, 0.5); }
            50% { transform: scale(1.05); box-shadow: 0 15px 50px rgba(255, 0, 128, 0.7); }
        }

        .floating-cta-button:hover {
            transform: scale(1.1);
        }

        /* Particles Background */
        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #5B21B6 0%, #DB2777 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 20px;
            
            /* --- AÑADIDO PARA EL FIX --- */
            /* Anula el max-width: 1200px de la regla <section> */
            max-width: none; 
            /* --- FIN DEL FIX --- */
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            top: -200px;
            right: -200px;
            animation: float 6s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            bottom: -100px;
            left: -100px;
            animation: float 8s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .hero-content {
            max-width: 1200px;
            text-align: center;
            color: white;
            z-index: 1;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-family: 'Fredoka', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .hero .subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            font-weight: 300;
            opacity: 0.95;
        }

        /* ----- INICIO: Estilos del Carrusel ----- */
        .carousel-container {
            position: relative;
            width: 100%;
            max-width: 900px; /* Ancho máximo del carrusel */
            margin: 30px auto;
            padding: 0 50px; /* Espacio para los botones de navegación */
        }

        .carousel-track {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory; /* Magia de CSS para el deslizamiento */
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none; /* Ocultar scrollbar en Firefox */
        }
        
        .carousel-track::-webkit-scrollbar {
            display: none; /* Ocultar scrollbar en Chrome/Safari */
        }

        .carousel-slide {
            flex: 0 0 auto;
            width: 180px; /* Ancho de cada portada */
            margin: 0 10px;
            scroll-snap-align: center; /* Centrar cada slide al deslizar */
            transition: transform 0.3s ease;
        }

        .carousel-slide:hover {
            transform: scale(1.05);
        }

        .slide-image-placeholder {
            width: 100%;
            aspect-ratio: 3 / 4; /* Proporción de portada de libro */
            background: rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            font-weight: 600;
            backdrop-filter: blur(5px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            font-size: 0.9rem;
            padding: 10px;
        }
        
        .slide-image-placeholder i {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .carousel-nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.3);
            border: none;
            color: white;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: background 0.3s ease;
            z-index: 10;
        }
        
        .carousel-nav-button:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        .carousel-nav-button.prev {
            left: 0;
        }

        .carousel-nav-button.next {
            right: 0;
        }
        /* ----- FIN: Estilos del Carrusel ----- */

        .hero .emoji-line {
            font-size: 3rem;
            margin: 20px 0;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #ff0080 0%, #ff8c00 100%);
            color: white;
            padding: 20px 50px;
            font-size: 1.3rem;
            font-weight: 700;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 140, 0, 0.5);
            border: none;
            cursor: pointer;
            margin-top: 20px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 140, 0, 0.7);
        }

        /* Notification Popup */
        .notification {
            position: fixed;
            background: white;
            padding: 15px 25px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 15px;
            animation: slideIn 0.5s ease-out;
            max-width: 350px;
        }

        @keyframes slideIn {
            from {
                transform: translateX(400px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .notification.hide {
            animation: slideOut 0.5s ease-out forwards;
        }

        @keyframes slideOut {
            to {
                transform: translateX(400px);
                opacity: 0;
            }
        }

        .notification img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #5B21B6 0%, #DB2777 100%);
        }

        .notification-content {
            flex: 1;
        }

        .notification-content strong {
            display: block;
            color: #333;
            font-size: 0.9rem;
        }

        .notification-content span {
            color: #666;
            font-size: 0.8rem;
        }

        /* Section Styles */
        section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-family: 'Fredoka', sans-serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 50px;
            color: #333;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(135deg, #5B21B6 0%, #DB2777 100%);
            margin: 20px auto;
            border-radius: 2px;
        }

        /* Story Section */
        .story-section {
            background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
            border-radius: 30px;
            padding: 60px 40px;
            margin: 40px 0;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .story-section::before {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            top: -50px;
            left: -50px;
            animation: float 7s ease-in-out infinite;
            z-index: 0;
        }

        .story-section::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            bottom: -100px;
            right: -100px;
            animation: float 9s ease-in-out infinite;
            z-index: 0;
        }

        .story-content {
            font-size: 1.1rem;
            line-height: 1.8;
            color: white;
            max-width: 900px;
            margin: 0 auto;
        }

        .story-content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: center;
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        @media (min-width: 768px) {
            .story-content-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        .story-photo-placeholder {
            width: 100%;
            aspect-ratio: 1 / 1;
            border-radius: 20px;
            background: #FFFFFF;
            border: none;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            object-fit: cover;
        }

        .story-text {
            text-align: left;
        }
        
        .story-text p {
            margin-bottom: 20px;
        }
        
        .story-text .signature {
            font-style: italic;
            margin-top: 30px;
            font-weight: 600;
            color: white;
        }

        /* Video Section */
        .video-container {
            position: relative;
            width: 100%;
            max-width: 800px;
            margin: 40px auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
            background: #f0f0f0;
            min-height: 450px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-placeholder {
            text-align: center;
            padding: 40px;
            color: #666;
        }

        .video-placeholder i {
            font-size: 4rem;
            color: #5B21B6;
            margin-bottom: 20px;
        }

        /* ----- INICIO: Estilos de la sección "Imprime, Crea y Disfruta" (MODIFICADA) ----- */
        .print-enjoy-section {
            background: linear-gradient(135deg, #FFDE00 0%, #FF9900 100%); /* Colores vivos y alegres */
            border-radius: 30px;
            padding: 60px 40px;
            margin: 60px auto;
            text-align: center;
            color: #333;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .print-enjoy-section::before {
            content: '';
            position: absolute;
            width: 250px;
            height: 250px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            top: -100px;
            right: -100px;
            animation: float 8s ease-in-out infinite;
            z-index: 0;
        }

        .print-enjoy-section::after {
            content: '';
            position: absolute;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            bottom: -50px;
            left: -50px;
            animation: float 7s ease-in-out infinite;
            z-index: 0;
        }

        .print-enjoy-section .section-title {
            color: #333; /* Color oscuro para el título sobre fondo claro */
            margin-bottom: 20px;
        }
        .print-enjoy-section .section-title::after {
            background: linear-gradient(135deg, #5B21B6 0%, #DB2777 100%); /* Línea del título */
        }

        .print-steps-grid {
            display: flex;
            justify-content: center;
            align-items: flex-start; /* Alinea al inicio por si el texto tiene 2 líneas */
            gap: 20px; /* Reducimos el gap para 4 items */
            margin: 50px auto;
            max-width: 1000px; /* Aumentamos el max-width para 4 items */
            flex-wrap: wrap; /* Para que se adapte en móvil */
            position: relative;
            z-index: 1; /* Asegurar que los iconos estén sobre las formas flotantes */
        }

        .print-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex: 1;
            min-width: 160px; /* Ancho mínimo para cada paso */
            max-width: 200px;
        }

        .print-step-icon {
            font-size: 3.5rem; /* Icono más pequeño para 4 items */
            color: #5B21B6; /* Púrpura de tu paleta */
            background: white;
            border-radius: 50%;
            width: 90px; /* Tamaño de círculo más pequeño */
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }
        .print-step-icon:hover {
            transform: translateY(-10px);
        }

        .print-step-text {
            font-size: 1.1rem; /* Texto ligeramente más pequeño */
            font-weight: 700;
            color: #333;
        }

        .print-arrow {
            /* Eliminamos las flechas para dar espacio a los 4 pasos */
            display: none; 
        }
        
        @media (min-width: 768px) {
            .print-steps-grid {
                flex-wrap: nowrap; /* No envolver en desktop */
                gap: 30px; /* Más gap en desktop */
            }
        }
        
        .print-enjoy-content p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #555;
            max-width: 900px;
            margin: 0 auto 30px;
        }

        .print-video-container {
            position: relative;
            width: 100%;
            max-width: 700px;
            margin: 40px auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            background: #fff;
            min-height: 350px; /* Asegurar altura mínima */
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px solid #5B21B6; /* Borde del color principal */
            position: relative;
            z-index: 1;
        }
        
        .print-video-placeholder {
            text-align: center;
            padding: 40px;
            color: #5B21B6;
        }

        .print-video-placeholder i {
            font-size: 4rem;
            margin-bottom: 20px;
        }

        .print-cta-button {
            background: linear-gradient(135deg, #ff0080 0%, #ff8c00 100%);
            color: white;
            padding: 18px 40px;
            font-size: 1.2rem;
            font-weight: 700;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 140, 0, 0.5);
            margin-top: 30px;
            display: inline-block;
        }
        .print-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 140, 0, 0.7);
        }
        /* ----- FIN: Estilos de la nueva sección "Imprime, Crea y Disfruta" ----- */


        /* Comparison Section */
        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .comparison-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            text-align: center;
        }

        .comparison-card:hover {
            transform: translateY(-10px);
        }

        .comparison-card.winner {
            background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
            color: white;
            border: 3px solid #059669;
            position: relative;
        }

        .comparison-card.winner::before {
            content: '⭐ MEJOR OPCIÓN';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #DC2626;
            color: white;
            padding: 5px 20px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
        }

        .comparison-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .comparison-card h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #333;
        }

        .comparison-card.winner h3 {
            color: white;
        }

        .comparison-list {
            text-align: left;
            list-style: none;
            padding: 0;
        }

        .comparison-list li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }

        .comparison-card.winner .comparison-list li {
            border-bottom: 1px solid rgba(255,255,255,0.2);
        }

        .comparison-list li:last-child {
            border-bottom: none;
        }

        /* Benefits Grid */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .benefit-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .benefit-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .benefit-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #333;
        }

        .benefit-card p {
            color: #666;
            line-height: 1.6;
        }

        /* Stories Catalog */
        .stories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .story-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .story-card:hover {
            transform: scale(1.05);
        }

        .story-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #5B21B6 0%, #DB2777 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
        }

        .story-info {
            padding: 20px;
        }

        .story-info h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #333;
        }

        .story-info p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .more-coming {
            background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            font-size: 3rem;
            color: white;
            font-weight: 700;
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 4rem;
            color: #5B21B6;
            opacity: 0.2;
            font-family: Georgia, serif;
        }

        .testimonial-content {
            margin-bottom: 20px;
            color: #333;
            line-height: 1.6;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #5B21B6 0%, #DB2777 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .testimonial-info strong {
            display: block;
            color: #333;
        }

        .testimonial-info span {
            color: #666;
            font-size: 0.9rem;
        }

        .stars {
            color: #ffd700;
            margin-top: 10px;
        }

        /* Offer Section */
        .offer-section {
            background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #EC4899 100%);
            border-radius: 30px;
            padding: 60px 40px;
            margin: 60px 0;
            color: white;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
        }

        .offer-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
            color: white;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 700;
            animation: shake 1s infinite;
            box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
        }

        @keyframes shake {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(-5deg); }
            75% { transform: rotate(5deg); }
        }

        .offer-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .offer-title {
            font-family: 'Fredoka', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 30px;
        }

        /* Mockup Container */
        .mockup-container {
            max-width: 600px;
            margin: 40px auto;
            padding: 40px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .mockup-placeholder {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            padding: 60px 40px;
            text-align: center;
            color: #5B21B6;
            min-height: 300px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .mockup-placeholder i {
            font-size: 5rem;
            margin-bottom: 20px;
        }

        .mockup-placeholder p {
            font-size: 1.1rem;
            font-weight: 600;
        }

        .bonuses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .bonus-item {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            padding: 25px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.4);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .bonus-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .bonus-item h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .bonus-value {
            font-size: 1.3rem;
            font-weight: 700;
            margin-top: 10px;
        }

        .bonus-value-old {
            text-decoration: line-through;
            opacity: 0.7;
            color: #FCA5A5;
        }

        .bonus-included {
            display: block;
            margin-top: 8px;
            font-size: 1rem;
            font-weight: 800;
            color: white;
            background: linear-gradient(135deg, #10B981 0%, #059669 100%);
            padding: 5px 15px;
            border-radius: 20px;
            display: inline-block;
            box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
        }

        .price-comparison {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 30px;
            margin: 40px 0;
            backdrop-filter: blur(10px);
            border: 3px solid rgba(255, 255, 255, 0.4);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .old-price {
            font-size: 2rem;
            text-decoration: line-through;
            opacity: 0.7;
            margin-bottom: 10px;
            color: #FCA5A5;
        }

        .new-price {
            font-size: 4rem;
            font-weight: 800;
            color: #10B981;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .price-note {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .countdown {
            background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
            border-radius: 15px;
            padding: 25px;
            margin: 30px 0;
            backdrop-filter: blur(10px);
            border: 3px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
        }

        .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .countdown-item {
            text-align: center;
            background: rgba(0, 0, 0, 0.2);
            padding: 15px 20px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .countdown-number {
            font-size: 3rem;
            font-weight: 800;
            display: block;
            color: #FEF08A;
        }

        .countdown-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .cta-button-price {
            display: inline-block;
            background: linear-gradient(135deg, #10B981 0%, #059669 100%);
            color: white;
            padding: 25px 60px;
            font-size: 1.5rem;
            font-weight: 700;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
            border: 3px solid white;
            cursor: pointer;
            margin-top: 30px;
        }

        .cta-button-price:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(16, 185, 129, 0.7);
        }

        /* Nueva Sección de Garantía */
        .guarantee-section {
            background: #f9fafb; /* Un color suave de fondo */
            border-radius: 30px;
            padding: 60px 40px;
            margin: 60px auto; /* Centrado */
            text-align: center;
            border: 2px dashed #DB2777;
            max-width: 1200px;
        }
        .guarantee-icon {
            font-size: 4rem;
            color: #5B21B6; /* Color principal */
            margin-bottom: 25px;
        }
        .guarantee-section h2 {
            font-family: 'Fredoka', sans-serif;
            font-size: 2.2rem;
            color: #333;
            margin-bottom: 20px;
        }
        .guarantee-section p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #555;
            max-width: 800px;
            margin: 0 auto;
        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 50px auto;
        }

        .faq-item {
            background: white;
            border-radius: 15px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .faq-question {
            padding: 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #333;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: #f8f8f8;
        }

        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: #666;
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            padding: 25px;
            max-height: 500px;
        }

        .faq-icon {
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        /* Footer */
        footer {
            background: #1F2937;
            color: white;
            padding: 60px 20px 20px;
        }

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

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 30px 0;
        }

        .social-links a {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-links a:hover {
            background: #5B21B6;
            transform: translateY(-5px);
        }

        .disclaimer {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
        }

        /* Responsive */
        @media (max-width: 768px) {
            body {
                padding-top: 120px;
            }

            .top-banner {
                flex-direction: column;
                gap: 10px;
                padding: 10px;
            }

            .banner-text {
                font-size: 0.9rem;
            }

            .banner-time {
                font-size: 1rem;
                padding: 6px 10px;
                min-width: 40px;
            }

            .hero h1 {
                font-size: 2rem;
            }

            /* Ajuste Carrusel Móvil */
            .carousel-container {
                padding: 0;
                width: 100vw;
                max-width: 100%;
                margin: 20px 0;
            }
            .carousel-track {
                padding: 0 20px;
            }
            .carousel-slide {
                width: 150px;
                margin: 0 8px;
            }
            .carousel-nav-button {
                display: none;
            }
            
            .hero .subtitle {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .new-price {
                font-size: 2.5rem;
            }

            .countdown-number {
                font-size: 2rem;
            }

            .notification {
                max-width: 280px;
                font-size: 0.85rem;
            }

            .floating-cta {
                bottom: 20px;
            }

            .floating-cta-button {
                padding: 15px 25px;
                font-size: 1rem;
            }

            /* Ajuste para la nueva sección en móvil */
            .print-steps-grid {
                flex-direction: column; /* Apilar pasos en móvil */
                gap: 30px; /* Más espacio en móvil */
            }
            .print-step {
                width: 100%;
                max-width: 250px; /* Limitar el ancho de cada paso en columna */
            }
            .print-arrow {
                display: none; /* Ocultar flechas en móvil */
            }
            
            /* Ajustes para la sección de precios en móvil */
            .pricing-options {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            
            .pricing-card {
                width: 100%;
                max-width: 320px;
                transform: none !important;
            }
            
            .pricing-card.recommended {
                transform: scale(1) !important;
            }
            
            .offer-price {
                font-size: 2rem;
            }
            
            .bonus-item {
                margin-bottom: 15px;
            }
            
            .countdown-timer {
                gap: 10px;
            }
            
            .countdown-item {
                padding: 10px 15px;
            }
            
            .popular-badge {
                top: -40px;
                padding: 6px 20px;
                font-size: 0.9rem;
            }
            
            .pricing-card.recommended .save-badge {
                top: 10px;
            }
            
            .savings-highlight {
                font-size: 1rem;
                padding: 6px 12px;
            }
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

.pricing-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.4);
    width: 320px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card.recommended {
    border-color: #F59E0B;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.3);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
}

.normal-price {
    font-size: 1.1rem;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.9);
}

.offer-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 10px 0;
    color: #FEF08A;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.pricing-card.recommended .offer-price {
    color: #FDE047;
}

.price-note {
    font-size: 1rem;
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.9);
}

.savings-highlight {
    font-size: 1.1rem;
    font-weight: 700;
    color: #10B981;
    background: rgba(16, 185, 129, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    margin: 15px 0;
    display: inline-block;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.popular-badge {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
    z-index: 10;
}

.save-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

.pricing-card.recommended .save-badge {
    top: 15px;
}/* ----- Identification/Empathy Section ----- */
.identification-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: -30px auto 40px; /* Adjust spacing after title */
}

.identification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.identification-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.identification-card:hover {
    border-color: #5B21B6;
    transform: translateY(-5px);
}

.identification-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.identification-card p {
    color: #444;
    line-height: 1.5;
}

.identification-message {
    text-align: center;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.identification-message p {
    font-size: 1.2rem;
    color: #333;
    background: #e6e6fa; /* Light purple */
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
}

/* ----- Verified Badge in Testimonials ----- */
.verified-badge {
    font-size: 0.8rem;
    color: #10B981; /* Green color */
    margin-left: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ----- Offer Value Stack Styles ----- */
.value-stack-summary {
    animation: pulse-price 2s infinite;
}

@keyframes pulse-price {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.offer-price {
    font-size: 2.5rem; /* Make it bigger */
    font-weight: 800;
    color: #FF0080;
    margin: 10px 0;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
}
/* ----- Offer Section Redesign (Clean & High Contrast) ----- */
#oferta .offer-section {
    background: #f3f4f6;
    /* Light gray background */
    border-radius: 30px;
    padding: 60px 20px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
}

#oferta .offer-title {
    color: #1f2937;
    text-shadow: none;
    margin-bottom: 40px;
}

#oferta .pricing-options {
    gap: 40px;
    align-items: center;
    /* Align center */
}

/* Reset and Override Pricing Card Styles */
#oferta .pricing-card {
    background: #ffffff !important;
    backdrop-filter: none !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    color: #374151 !important;
    /* Dark text */
}

#oferta .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

#oferta .pricing-card.recommended {
    border: 3px solid #10B981 !important;
    /* Green highlight */
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.25) !important;
}

#oferta .pricing-card h3 {
    color: #111827 !important;
    /* Almost black */
    font-weight: 800;
}

#oferta .pricing-card .normal-price {
    color: #9CA3AF !important;
    /* Gray */
    font-weight: 500;
}

#oferta .pricing-card .offer-price {
    color: #DB2777 !important;
    /* Brand Pink/Red */
    text-shadow: none !important;
    font-weight: 900;
}

#oferta .pricing-card.recommended .offer-price {
    color: #059669 !important;
    /* Dark Green for recommended */
}

/* Fix CTA Button inside White Card */
#oferta .cta-button-price {
    border: none;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
}

/* Value Stack Summary Fixes */
#oferta .value-stack-summary p {
    color: #4B5563 !important;
    /* Dark gray */
}

#oferta .value-stack-summary s {
    color: #EF4444 !important;
    /* Red */
}

#oferta .value-stack-summary p:last-child {
    color: #DB2777 !important;
    text-shadow: none !important;
    background: #FCE7F3;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-top: 10px;
}

/* Badges */
.popular-badge {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Bonus Items inside Offer (if any text needs contrast) */
.bonus-item {
    background: white !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.bonus-item h4 {
    color: #1f2937;
}

.bonus-item p {
    color: #4b5563;
}

.bonus-value-old {
    color: #ef4444;
}
/* ----- Layout & Mobile Optimization Fixes ----- */

/* 1. Pricing Flow Fix (Desktop) */
#oferta .pricing-options {
    flex-wrap: nowrap !important;
    /* Force side-by-side on desktop */
    width: 100%;
    max-width: 1000px;
    /* Ensure enough space */
    margin-left: auto;
    margin-right: auto;
}

/* 2. Floating CTA Badge for Custom Stories */
.floating-cta-badge {
    position: absolute;
    top: -40px;
    right: 0;
    background: #FF0080;
    color: white;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 0, 128, 0.4);
    white-space: nowrap;
    animation: bounce 2s infinite;
}

.floating-cta-badge::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #FF0080;
}

/* 3. Mobile Optimization (Prevents Distortion) */
@media (max-width: 900px) {

    /* Stack pricing cards on tablet/mobile */
    #oferta .pricing-options {
        flex-wrap: wrap !important;
        flex-direction: column !important;
    }

    #oferta .pricing-card {
        width: 100% !important;
        /* Full width on mobile */
        max-width: 350px !important;
        /* Limit max width */
        margin-bottom: 30px;
        /* Space between cards */
    }

    /* Floating CTA Mobile Adjustments */
    .floating-cta {
        width: 90%;
        max-width: 350px;
        bottom: 20px;
    }

    .floating-cta-badge {
        font-size: 0.8rem;
        top: -35px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }

    .floating-cta-badge::after {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }

    .floating-cta-button {
        width: 100%;
        justify-content: center;
        padding: 15px;
        font-size: 1rem;
    }

    /* General Container Padding Fixes */
    section {
        padding: 40px 15px;
        /* Reduce padding on mobile */
    }

    .hero h1 {
        font-size: 1.8rem;
        /* Prevent headline overflow */
    }

    .emoji-line {
        font-size: 2rem;
    }

    /* Ensure images don't overflow */
    img {
        max-width: 100%;
        height: auto;
    }
}
/* ----- Final Visual Polish & Effects ----- */

/* 1. Security Text Fix (High Contrast) */
.security-badge-container {
    background: #e5e7eb;
    padding: 15px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.security-text {
    color: #374151 !important;
    /* Dark gray */
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 !important;
    /* Reset margin */
}

/* 2. Coherent Value Stack Summary */
#oferta .value-stack-summary {
    background: white;
    border: 2px dashed #F472B6;
    /* Soft pink dash */
    border-radius: 20px;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto 40px;
    /* Center and space out */
    box-shadow: 0 10px 25px -5px rgba(244, 114, 182, 0.15);
    position: relative;
}

#oferta .value-stack-summary::before {
    content: 'AHORRO TOTAL';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #F472B6;
    color: white;
    padding: 2px 15px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: bold;
}

#oferta .value-stack-summary p {
    margin: 5px 0;
}

/* 3. Attention Grabbing Animations */
@keyframes softPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(255, 0, 128, 0.4);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 10px 25px rgba(255, 0, 128, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(255, 0, 128, 0.4);
    }
}

.cta-button,
.cta-button-price {
    animation: softPulse 3s infinite ease-in-out !important;
}

/* Add a subtle shine to the recommended card */
@keyframes shine {
    0% {
        left: -100px;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.pricing-card.recommended {
    overflow: hidden;
}

.pricing-card.recommended::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100px;
    width: 50px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: shine 5s infinite;
}
/* ----- Badge Clipping Fix ----- */
.pricing-card.recommended {
    overflow: visible !important;
    /* Ensure badge can stick out */
}

/* Remove the previous shine effect that required overflow:hidden */
.pricing-card.recommended::after {
    display: none !important;
}

/* Add a new safe animation (Border/Shadow Pulse) */
@keyframes borderPulse {
    0% {
        border-color: #10B981;
        box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.25);
    }

    50% {
        border-color: #34D399;
        box-shadow: 0 35px 60px -12px rgba(16, 185, 129, 0.5);
    }

    100% {
        border-color: #10B981;
        box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.25);
    }
}

.pricing-card.recommended {
    animation: borderPulse 3s infinite ease-in-out;
}
/* ----- Growth & Conversion Features ----- */

/* 1. Lead Magnet Section */
.lead-magnet-section {
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
    border-radius: 30px;
    margin: 40px auto;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(109, 40, 217, 0.3);
}

.lead-magnet-content {
    position: relative;
    z-index: 2;
}

.lead-magnet-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    font-family: 'Fredoka', sans-serif;
}

.lead-magnet-text {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* MailerLite Button Styling */
.ml-onclick-form {
    background: #F472B6 !important;
    color: white !important;
    border: none !important;
    padding: 15px 40px !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
    transition: transform 0.3s ease !important;
    font-family: 'Poppins', sans-serif !important;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
}

.ml-onclick-form:hover {
    transform: scale(1.05) !important;
    background: #EC4899 !important;
}

.ml-onclick-form::before {
    content: '\f019';
    /* FontAwesome Download Icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}


/* 2. WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
    /* Super high z-index */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20BA5A;
}

.whatsapp-pulse {
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* 3. Mobile Sticky Bar */
.mobile-sticky-bar {
    display: none;
    /* Hidden by default */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 10px 15px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    justify-content: space-between;
    align-items: center;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.mobile-bar-price {
    display: flex;
    flex-direction: column;
}

.mobile-bar-old {
    font-size: 0.8rem;
    text-decoration: line-through;
    color: #9CA3AF;
}

.mobile-bar-new {
    font-size: 1.2rem;
    font-weight: 800;
    color: #DB2777;
}

.mobile-bar-btn {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

/* Media Query for Mobile Elements */
@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: flex;
    }

    /* Adjust other floating elements so they don't overlap with the bar */
    .whatsapp-float {
        bottom: 80px;
        /* Push it up */
        right: 15px;
    }

    .floating-cta {
        display: none !important;
        /* Hide original Floating CTA on mobile to avoid clutter */
    }
}
