* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #d44a18;
            --secondary: #f7931e;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --accent: #ffd60a;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
            font-size: 16px;
        }
        
        header {
            background: linear-gradient(135deg, var(--dark) 0%, #2d2d44 100%);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--accent);
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--accent);
        }
        
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }
        
        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: white;
            transition: all 0.3s;
            border-radius: 3px;
        }
        
        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }
        
        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
        
        .hero {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(247, 147, 30, 0.9)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231a1a2e" width="1200" height="600"/><circle cx="200" cy="100" r="150" fill="%23ff6b35" opacity="0.1"/><circle cx="1000" cy="400" r="200" fill="%23ffd60a" opacity="0.1"/></svg>');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 150px 2rem 100px;
            text-align: center;
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hero-content {
            max-width: 800px;
            animation: fadeInUp 1s ease-out;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }
        
        .cta-button {
            display: inline-block;
            background: var(--accent);
            color: var(--dark);
            padding: 1rem 3rem;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
            background: #ffed4e;
        }
        
        .benefits {
            padding: 80px 2rem;
            background: var(--light);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--dark);
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        
        .benefit-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            text-align: center;
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
        }
        
        .benefit-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .benefit-card h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .features {
            padding: 80px 2rem;
            background: white;
            overflow: hidden;
        }
        
        .carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 3rem 0.5rem;
        }
        
        .carousel-wrapper {
            overflow: hidden;
            border-radius: 15px;
        }
        
        .carousel-track {
            display: flex;
            gap: 2rem;
        }
        
        .carousel-track.transitioning {
            transition: transform 0.5s ease-in-out;
        }
        
        .product-card {
            min-width: 300px;
            flex-shrink: 0;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            border: 2px solid transparent;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
        }
        
        .product-icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-align: center;
        }
        
        .product-card h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            text-align: center;
            font-size: 1.5rem;
        }
        
        .product-card p {
            color: #666;
            line-height: 1.6;
            text-align: center;
        }
        
        .product-price {
            font-size: 1.8rem;
            color: var(--secondary);
            font-weight: bold;
            text-align: center;
            margin: 1rem 0;
        }
        
        .carousel-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .carousel-button:hover {
            background: var(--secondary);
            transform: translateY(-50%) scale(1.1);
        }
        
        .carousel-button.prev {
            left: -25px;
        }
        
        .carousel-button.next {
            right: -25px;
        }
        
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 2rem;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .dot.active {
            background: var(--primary);
            width: 30px;
            border-radius: 6px;
        }
        
        @media (max-width: 768px) {
            .product-card {
                min-width: 280px;
            }
            
            .carousel-button {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .carousel-button.prev {
                left: 10px;
            }
            
            .carousel-button.next {
                right: 10px;
            }
        }
        
        .pricing {
            padding: 80px 2rem;
            background: linear-gradient(135deg, var(--dark), #2d2d44);
            color: white;
        }
        
        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .pricing-card {
            background: white;
            color: var(--dark);
            padding: 2.5rem;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s;
        }
        
        .pricing-card:hover {
            transform: scale(1.05);
        }
        
        .pricing-card.featured {
            border: 3px solid var(--accent);
            transform: scale(1.05);
        }
        
        .price {
            font-size: 3rem;
            color: var(--primary);
            font-weight: bold;
            margin: 1rem 0;
        }
        
        .contact {
            padding: 80px 2rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .contact-info {
            max-width: 900px;
            margin: 3rem auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        
        .contact-card {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .contact-icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }
        
        .contact-card h3 {
            color: var(--dark);
            margin-bottom: 1rem;
            font-size: 2rem;
        }
        
        .contact-link {
            display: inline-block;
            margin-top: 1rem;
            padding: 1rem 2rem;
            font-size: 1.4rem;
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .contact-link:hover {
            background: var(--secondary);
            transform: scale(1.05);
        }
        
        .contact-link.whatsapp {
            background: #077a31;
        }
        
        .contact-link.whatsapp:hover {
            background: #043b18;
        }
        
        .contact-text {
            font-size: 1.2rem;
            color: var(--dark);
            margin: 0.5rem 0;
            font-weight: 600;
        }
        
        .contact-description {
            color: #666;
            margin-top: 1rem;
            line-height: 1.6;
        }
        
        .contact-hours {
            background: var(--light);
            padding: 1.5rem;
            border-radius: 10px;
            margin-top: 1.5rem;
            border-left: 4px solid var(--primary);
        }
        
        .contact-hours h4 {
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }
        .contact-hours p
        {
            font-size: 1rem;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .scroll-indicator {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            background: var(--accent);
            z-index: 9999;
            transition: width 0.1s;
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .menu-toggle {
                display: flex;
            }
            
            .nav-links {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: var(--dark);
                width: 100%;
                text-align: center;
                transition: left 0.3s;
                box-shadow: 0 10px 27px rgba(0,0,0,0.3);
                padding: 2rem 0;
                gap: 0;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                padding: 1rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .nav-links li:last-child {
                border-bottom: none;
            }
        }