
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #0066ff;
            --secondary-color: #00ccff;
            --accent-color: #ff4757;
            --success-color: #2ed573;
            --warning-color: #ffa502;
            --text-color: #2f3542;
            --text-light: #57606f;
            --bg-color: #ffffff;
            --card-bg: #f8fafc;
            --border-color: #e2e8f0;
            --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
            --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-ice: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
            --gradient-cool: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --radius-xl: 24px;
        }

        .dark-mode {
            --primary-color: #3b82f6;
            --secondary-color: #06b6d4;
            --accent-color: #ef4444;
            --success-color: #10b981;
            --warning-color: #f59e0b;
            --text-color: #f1f5f9;
            --text-light: #94a3b8;
            --bg-color: #0f172a;
            --card-bg: #1e293b;
            --border-color: #334155;
            --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
            --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.3);
            --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background: var(--bg-color);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-x: hidden;
        }

        /* Enhanced Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--card-bg);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--secondary-color);
        }

        /* Enhanced Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-bottom: 1px solid var(--border-color);
        }

        .dark-mode .navbar {
            background: rgba(15, 23, 42, 0.9);
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.95);
            padding: 0.75rem 0;
            box-shadow: var(--shadow-md);
        }

        .dark-mode .navbar.scrolled {
            background: rgba(15, 23, 42, 0.95);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: contain;
            border: 2px solid var(--primary-color);
            transition: all 0.3s ease;
        }

        .logo:hover .logo-img {
            transform: rotate(360deg);
            border-color: var(--secondary-color);
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .logo-title {
            font-size: 1.4rem;
            font-weight: 800;
        }

        .logo-subtitle {
            font-size: 0.7rem;
            opacity: 0.7;
            font-weight: 400;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 1rem;
            border-radius: var(--radius-sm);
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-ice);
            border-radius: var(--radius-sm);
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .nav-links a:hover::before {
            opacity: 0.1;
            transform: scale(1);
        }

        .nav-links a:hover {
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        .theme-toggle {
            background: var(--card-bg);
            border: 2px solid var(--border-color);
            color: var(--text-color);
            padding: 0.75rem 1.25rem;
            border-radius: var(--radius-lg);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-weight: 500;
            position: relative;
            overflow: hidden;
        }

        .theme-toggle::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-ice);
            transition: left 0.5s ease;
            z-index: -1;
        }

        .theme-toggle:hover::before {
            left: 0;
        }

        .theme-toggle:hover {
            color: white;
            border-color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
            z-index: 1001;
            padding: 0.5rem;
            border-radius: var(--radius-sm);
            transition: all 0.3s ease;
        }

        .burger:hover {
            background: var(--card-bg);
        }

        .burger span {
            width: 28px;
            height: 3px;
            background: var(--text-color);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: center;
            border-radius: 2px;
        }

        .burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .burger.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(20px);
        }

        .burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Enhanced Hero Section */
        .hero {
            background: var(--gradient-ice);
            color: white;
            padding: 12rem 0 8rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><path d="M0,0 Q250,100 500,50 T1000,25 L1000,0 Z"/></svg>');
            background-size: cover;
            animation: waveFloat 8s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: pulseGlow 3s ease-in-out infinite;
        }

        @keyframes waveFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(2deg); }
        }

        @keyframes pulseGlow {
            0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
            50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
        }

        .hero-content {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            margin-bottom: 2rem;
            animation: slideInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
            font-weight: 800;
            line-height: 1.1;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
            background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            margin-bottom: 3rem;
            opacity: 0.95;
            animation: slideInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
            line-height: 1.6;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
        }

        .hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
            align-items: center;
            animation: slideInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: var(--accent-color);
            color: white;
            padding: 1.25rem 2.5rem;
            text-decoration: none;
            border-radius: var(--radius-xl);
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 30px rgba(255, 71, 87, 0.3);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(255, 71, 87, 0.4);
        }

        .cta-secondary {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .cta-secondary:hover {
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
        }

        /* Floating Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .floating-ice {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: floatUp 15s linear infinite;
        }

        .floating-ice:nth-child(1) {
            width: 20px;
            height: 20px;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-ice:nth-child(2) {
            width: 30px;
            height: 30px;
            left: 30%;
            animation-delay: 2s;
        }

        .floating-ice:nth-child(3) {
            width: 25px;
            height: 25px;
            left: 60%;
            animation-delay: 4s;
        }

        .floating-ice:nth-child(4) {
            width: 35px;
            height: 35px;
            left: 80%;
            animation-delay: 6s;
        }

        @keyframes floatUp {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Enhanced Animations */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: scale(0.3);
            }
            50% {
                opacity: 1;
                transform: scale(1.05);
            }
            70% {
                transform: scale(0.9);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Enhanced Section Styles */
        .section {
            padding: 8rem 0;
            position: relative;
        }

        .section:nth-child(even) {
            background: var(--card-bg);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            position: relative;
            font-weight: 800;
            line-height: 1.2;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.25rem;
            color: var(--text-light);
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: var(--gradient-ice);
            border-radius: 2px;
        }

        /* Enhanced Cards */
        .cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .card {
            background: var(--bg-color);
            padding: 3rem 2rem;
            border-radius: var(--radius-xl);
            text-align: center;
            box-shadow: var(--shadow-md);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
            min-height: 320px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, var(--primary-color), transparent);
            opacity: 0;
            transition: all 0.5s ease;
            animation: cardRotate 4s linear infinite;
        }

        .card::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            right: 2px;
            bottom: 2px;
            background: var(--bg-color);
            border-radius: calc(var(--radius-xl) - 2px);
            z-index: 1;
        }

        .card:hover::before {
            opacity: 0.1;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        @keyframes cardRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .card-content {
            position: relative;
            z-index: 2;
        }

        .card-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 2rem;
            background: var(--gradient-ice);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
        }

        .card:hover .card-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .card h3 {
            font-size: 1.75rem;
            margin-bottom: 1.5rem;
            color: var(--text-color);
            font-weight: 700;
        }

        .card p {
            line-height: 1.7;
            color: var(--text-light);
            font-size: 1.1rem;
        }

        /* Enhanced Products Section */
        .products-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .product-card {
            background: var(--bg-color);
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid var(--border-color);
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .product-image {
            width: 100%;
            height: 300px;
            overflow: hidden;
            position: relative;
            background: var(--gradient-cool);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .product-card:hover .product-image::before {
            transform: translateX(100%);
        }

        .product-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: all 0.3s ease;
        }

        .product-card:hover .product-img {
            transform: scale(1.05);
        }

        .product-placeholder {
            font-size: 4rem;
            color: white;
            opacity: 0.8;
        }

        .product-info {
            padding: 2.5rem;
            text-align: center;
        }

        .product-info h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-color);
            font-weight: 700;
        }

        .product-info p {
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .product-price {
            font-weight: 800;
            color: var(--accent-color);
            font-size: 1.75rem;
            margin-bottom: 2rem;
        }

        .product-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--gradient-ice);
            color: white;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: var(--radius-lg);
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .product-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .product-btn:hover::before {
            left: 100%;
        }

        .product-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        /* Enhanced WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #25d366;
            border-radius: var(--radius-xl);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: whatsappPulse 3s infinite;
            text-decoration: none;
            color: white;
            padding: 1.25rem;
            font-weight: 600;
            font-size: 1rem;
            gap: 0.75rem;
            min-width: 70px;
            height: 70px;
            overflow: hidden;
        }

        @keyframes whatsappPulse {
            0%, 100% { 
                box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
                transform: scale(1);
            }
            50% { 
                box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5), 0 0 0 10px rgba(37, 211, 102, 0.1);
                transform: scale(1.05);
            }
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
            border-radius: var(--radius-lg);
            width: auto;
            padding: 1.25rem 1.75rem;
        }

        .whatsapp-btn i {
            color: white;
            font-size: 1.75rem;
            flex-shrink: 0;
        }

        .whatsapp-text {
            white-space: nowrap;
            opacity: 0;
            max-width: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .whatsapp-btn:hover .whatsapp-text {
            opacity: 1;
            max-width: 150px;
        }

        /* Enhanced Testimonials */
        .testimonials-section {
            background: var(--gradient-ice);
            padding: 8rem 0;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .testimonials-section .section-title {
    color: white;
    }

        .testimonials-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.05)"><circle cx="200" cy="50" r="30"/><circle cx="800" cy="30" r="20"/><circle cx="500" cy="70" r="25"/></svg>');
            animation: floatPattern 20s linear infinite;
        }

        @keyframes floatPattern {
            0% { transform: translateX(-100px); }
            100% { transform: translateX(100px); }
        }

        .testimonials-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .testimonials {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .testimonial {
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-xl);
            padding: 2.5rem;
            text-align: center;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .testimonial::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.1), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
            animation: cardRotate 8s linear infinite;
        }

        .testimonial:hover::before {
            opacity: 1;
        }

        .testimonial:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .testimonial-content {
            font-style: italic;
            margin-bottom: 2rem;
            font-size: 1.1rem;
            line-height: 1.7;
            position: relative;
            z-index: 2;
        }

        .testimonial-author {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .testimonial-author img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1rem;
            border: 3px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .testimonial:hover .testimonial-author img {
            transform: scale(1.1);
            border-color: rgba(255, 255, 255, 0.6);
        }

        .testimonial-author h4 {
            font-weight: 700;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .testimonial-author p {
            opacity: 0.8;
            font-size: 0.95rem;
        }

        /* Enhanced FAQ Section */
        .faq-section {
            padding: 8rem 0;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 1.5rem;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: var(--shadow-md);
        }

        .faq-question {
            background: var(--card-bg);
            padding: 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .faq-question::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--gradient-ice);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question::before,
        .faq-question:hover::before {
            transform: scaleY(1);
        }

        .faq-question:hover {
            background: var(--bg-color);
            color: var(--primary-color);
        }

        .faq-question i {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 1.2rem;
            color: var(--primary-color);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 2rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: var(--bg-color);
        }

        .faq-item.active .faq-answer {
            padding: 2rem;
            max-height: 500px;
        }

        .faq-answer p {
            color: var(--text-light);
            line-height: 1.7;
            font-size: 1.05rem;
        }

        /* Enhanced Map Section */
        .map-section {
            background: var(--card-bg);
            padding: 8rem 0;
        }

        .map-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .map-wrapper {
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-color);
            position: relative;
        }

        .map-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            opacity: 0.1;
            z-index: 1;
            pointer-events: none;
        }

        .map-wrapper iframe {
            width: 100%;
            height: 500px;
            border: none;
            position: relative;
            z-index: 2;
        }

        /* Enhanced Footer */
        .footer {
            background: var(--text-color);
            color: white;
            padding: 5rem 0 2rem;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-ice);
            opacity: 0.1;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .footer-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
            text-align: left;
        }

        .footer-section h3 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .footer-section p, .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            margin-bottom: 0.75rem;
            display: block;
            line-height: 1.6;
        }

        .footer-section a:hover {
            color: var(--secondary-color);
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 3rem 0;
        }

        .social-links a {
            width: 50px;
            height: 50px;
            background: var(--gradient-ice);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 1.25rem;
        }

        .social-links a:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
        }

        /* Enhanced Loading Animation */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-color);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 1;
            transition: opacity 0.6s ease;
        }

        .loading-overlay.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .ice-loader {
            width: 60px;
            height: 60px;
            background: var(--gradient-ice);
            border-radius: 50%;
            animation: iceRotate 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
            position: relative;
            margin-bottom: 2rem;
        }

        .ice-loader::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 30px;
            height: 30px;
            background: var(--bg-color);
            border-radius: 50%;
            transform: translate(-50%, -50%);
        }

        .loading-text {
            font-size: 1.2rem;
            color: var(--text-color);
            font-weight: 600;
            animation: fadeInOut 2s ease-in-out infinite;
        }

        @keyframes iceRotate {
            0% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(1.1); }
            100% { transform: rotate(360deg) scale(1); }
        }

        @keyframes fadeInOut {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        /* Enhanced Scroll to Top */
        .scroll-top {
            position: fixed;
            bottom: 8rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            background: var(--gradient-ice);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 999;
            box-shadow: var(--shadow-md);
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: var(--shadow-lg);
        }

        /* Stats Section */
        .stats-section {
            background: var(--gradient-ice);
            padding: 6rem 0;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .stat-item {
            text-align: center;
            position: relative;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
            font-weight: 500;
        }

        /* Process Section */
        .process-section {
            padding: 8rem 0;
            background: var(--card-bg);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
            position: relative;
        }

        .process-step {
            text-align: center;
            padding: 2rem;
            position: relative;
        }

        .process-step::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -1rem;
            width: 2rem;
            height: 2px;
            background: var(--gradient-ice);
            transform: translateY(-50%);
        }

        .process-step:last-child::after {
            display: none;
        }

        .process-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 1.5rem;
            background: var(--gradient-ice);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
            position: relative;
        }

        .process-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 30px;
            height: 30px;
            background: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            font-weight: 700;
            color: white;
        }

        .process-step h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--text-color);
            font-weight: 600;
        }

        .process-step p {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Enhanced Responsive Design */
        @media (max-width: 1200px) {
            .nav-container {
                padding: 0 1.5rem;
            }
            
            .container {
                padding: 0 1.5rem;
            }
        }

        @media (max-width: 992px) {
            .hero {
                padding: 10rem 0 6rem;
            }
            
            .section {
                padding: 6rem 0;
            }
            
            .section-title {
                font-size: clamp(2rem, 4vw, 2.8rem);
            }
            
            .cards {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 2rem;
            }
            
            .process-step::after {
                display: none;
            }

            .logo-subtitle {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100vh;
                background: var(--bg-color);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                gap: 3rem;
                padding: 4rem 0;
                z-index: 999;
                backdrop-filter: blur(20px);
            }

            .nav-links.active {
                left: 0;
            }

            .burger {
                display: flex;
            }

            .hero {
                padding: 8rem 0 4rem;
                min-height: 90vh;
            }

            .hero-cta {
                flex-direction: column;
                align-items: stretch;
                max-width: 300px;
                margin: 0 auto;
            }

            .section {
                padding: 4rem 0;
            }

            .cards {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .card {
                padding: 2rem 1.5rem;
                min-height: auto;
            }
            
            .products-container {
                grid-template-columns: 1fr;
            }
            
            .testimonials {
                grid-template-columns: 1fr;
            }
            
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
            
            .process-steps {
                grid-template-columns: 1fr;
            }

            .footer-info {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }
            
            .theme-toggle {
                padding: 0.75rem;
                width: 50px;
                height: 50px;
                border-radius: 50%;
                justify-content: center;
            }
            
            .theme-toggle span {
                display: none;
            }
            
            .whatsapp-btn {
                width: 60px;
                height: 60px;
                bottom: 1.5rem;
                right: 1.5rem;
                font-size: 0;
            }
            
            .whatsapp-btn i {
                font-size: 1.5rem;
            }
            
            .whatsapp-btn:hover {
                width: 60px;
                padding: 1.25rem;
            }
            
            .whatsapp-btn:hover .whatsapp-text {
                display: none;
            }
            
            .scroll-top {
                bottom: 6rem;
                right: 1.5rem;
                width: 50px;
                height: 50px;
            }

            .logo-text {
                font-size: 0.9rem;
            }

            .logo-img {
                width: 40px;
                height: 40px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 7rem 0 3rem;
            }
            
            .nav-container {
                padding: 0 1rem;
            }
            
            .container {
                padding: 0 1rem;
            }
            
            .logo {
                font-size: 1.4rem;
            }
            
            .logo-img {
                width: 35px;
                height: 35px;
            }
            
            .cta-button {
                padding: 1rem 1.5rem;
                font-size: 1rem;
            }
            
            .card {
                padding: 1.5rem;
            }
            
            .product-info {
                padding: 2rem;
            }
            
            .testimonial {
                padding: 2rem;
            }
            
            .faq-question,
            .faq-answer {
                padding: 1.5rem;
            }
            
            .stats-container {
                grid-template-columns: 1fr;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
        }

        /* Custom Utilities */
        .text-gradient {
            background: var(--gradient-ice);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }
   