 :root {
            --primary-color: #8ab925;
            --secondary-color: #f8d824;
            --dark-color: #333333;
            --light-color: #ffffff;
            --accent-color: #e74c3c;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #f9f9f9;
            color: var(--dark-color);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* HEADER */
        header {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            padding: 15px 0;
            color: white;
            text-align: center;
        }
        
        .logo {
            max-width: 180px;
            margin-bottom: 10px;
        }

        /* HERO SECTION */
        .hero {
            background: url('/api/placeholder/1200/600') center/cover;
            position: relative;
            color: white;
            text-align: center;
            padding: 80px 20px;
            background-color: #f5f5f5;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            background-color: rgba(0,0,0,0.6);
            padding: 30px;
            border-radius: 10px;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
		/*BOTON CTA1*/
		.activador-1 {
			            display: inline-block;
            background-color: var(--accent-color);
            color: white;
            font-size: 1.3rem;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
			cursor: pointer;
		}
		.activador-1:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
            background-color: #c0392b;
        }
        
		
        /* PAIN POINTS SECTION */
        .pain-points {
            padding: 60px 0;
            background-color: #fff;
        }
        
        .pain-title {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2rem;
            color: var(--primary-color);
        }
        
        .problems {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        
        .problem-box {
            flex: 1;
            min-width: 250px;
            background-color: #f9f9f9;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            text-align: center;
        }
        
        .problem-box img {
            width: 80px;
            height: 80px;
            margin-bottom: 15px;
        }
        
        .problem-box h3 {
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        /* PRODUCT SECTION */
        .product {
            padding: 60px 0;
            background: linear-gradient(135deg, #f9f9f9 0%, #e9e9e9 100%);
        }
        
        .product-grid {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 30px;
        }
        
        .product-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        
        .product-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .product-details {
            flex: 1;
            min-width: 300px;
        }
        
        .product-title {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .features {
            margin: 25px 0;
        }
        
        .feature {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .feature i {
            color: var(--primary-color);
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        /* SCIENCE SECTION */
        .science {
            padding: 60px 0;
            background-color: #fff;
            text-align: center;
        }
        
        .science-title {
            font-size: 2rem;
            margin-bottom: 40px;
            color: var(--primary-color);
        }
        
        .science-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        
        .science-box {
            flex: 1;
            min-width: 280px;
            max-width: 350px;
            padding: 25px;
            background-color: #f9f9f9;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .science-box img {
            width: 100px;
            height: 100px;
            margin-bottom: 15px;
        }
        
        .science-box h3 {
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        /* TESTIMONIALS */
        .testimonials {
            padding: 60px 0;
            background: linear-gradient(135deg, #f9f9f9 0%, #e9e9e9 100%);
        }
        
        .testimonial-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 40px;
            color: var(--primary-color);
        }
        
        .testimonial-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        
        .testimonial-box {
            flex: 1;
            min-width: 280px;
            max-width: 380px;
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .testimonial-box p {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .testimonial-box .quote {
            font-size: 60px;
            position: absolute;
            top: -20px;
            left: 10px;
            opacity: 0.1;
            color: var(--primary-color);
        }
        
        .customer {
            display: flex;
            align-items: center;
        }
        
        .customer img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
        }
        
        .customer-info h4 {
            margin-bottom: 5px;
        }
        
        .customer-info small {
            color: #777;
        }
        
        /* PROMO SECTION */
        .promo {
            padding: 60px 0;
            background-color: var(--primary-color);
            color: white;
            text-align: center;
        }
        
        .promo-title {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        
        .promo-description {
            font-size: 1.2rem;
            margin-bottom: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .price-tag {
            font-size: 2.5rem;
            font-weight: bold;
            margin: 20px 0;
        }
        
        .original-price {
            text-decoration: line-through;
            opacity: 0.7;
            font-size: 1.5rem;
            margin-right: 15px;
        }
        
        .guarantee {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 30px 0;
        }
        
        .guarantee img {
            width: 80px;
            margin-right: 20px;
        }
        
        .guarantee p {
            text-align: left;
            font-size: 1.1rem;
        }
        
        /* CTA SECTION */
        .cta {
            background-color: var(--secondary-color);
            padding: 30px 0;
            text-align: center;
        }
        
        .cta-btn {
            display: inline-block;
            background-color: var(--accent-color);
            color: white;
            font-size: 1.3rem;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
            background-color: #c0392b;
        }
        
        .whatsapp-icon {
            margin-right: 10px;
        }
        
        /* FOOTER */
        footer {
            background-color: #333;
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        
        .footer-links {
            margin: 20px 0;
        }
        
        .footer-links a {
            color: white;
            margin: 0 10px;
            text-decoration: none;
        }
        
        .footer-links a:hover {
            text-decoration: underline;
        }
        
        .copyright {
            margin-top: 20px;
            font-size: 0.9rem;
            color: #aaa;
        }
        
        /* MOBILE RESPONSIVE */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .pain-title, .product-title, .science-title, .testimonial-title, .promo-title {
                font-size: 1.8rem;
            }
            
            .product-grid, .science-grid, .testimonial-grid {
                flex-direction: column;
            }
            
            .price-tag {
                font-size: 2rem;
            }
            
            .original-price {
                font-size: 1.2rem;
            }
            
            .guarantee {
                flex-direction: column;
                text-align: center;
            }
            
            .guarantee img {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .guarantee p {
                text-align: center;
            }
        }
        
        /* FLOATING CTA */
        .floating-cta {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: var(--accent-color);
            color: white;
            padding: 10px 20px;
            border-radius: 50px;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            z-index: 1000;
            display: flex;
            align-items: center;
            font-weight: bold;
        }
        
        .floating-cta:hover {
            background-color: #c0392b;
        }