:root {
            --azul-principal: #102138;
            --laranja-destaque: #dd4920;
            --branco-creme: #f9f3ec;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--branco-creme);
            color: var(--azul-principal);
            line-height: 1.6;
        }
#lite-badge {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

.hero-topmargin {
	margin-top: 60px;
}
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .hero-bg {
            background: linear-gradient(135deg, var(--azul-principal) 0%, #1a2f4a 100%);
            color: white;
        }
        
        .promo-banner {
            background: linear-gradient(90deg, var(--laranja-destaque) 0%, #ff6635 100%);
            color: white;
            text-align: center;
            padding: 12px 0;
            font-weight: 600;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.8; }
            100% { opacity: 1; }
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--laranja-destaque) 0%, #ff6635 100%);
            color: white;
            padding: 18px 36px;
            border-radius: 12px;
            border: none;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            box-shadow: 0 8px 25px rgba(221, 73, 32, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(221, 73, 32, 0.4);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--branco-principal);
            border: 2px solid #ffffff;
            padding: 16px 32px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-secondary:hover {
            background: var(--azul-principal);
            color: white;
        }
        
        .price-old {
            text-decoration: line-through;
            color: #999;
            font-size: 24px;
        }
        
        .price-new {
            color: var(--laranja-destaque);
            font-size: 48px;
            font-weight: 800;
        }
        
        .countdown {
            background: var(--laranja-destaque);
            color: white;
            padding: 20px;
            border-radius: 16px;
            text-align: center;
            margin: 20px 0;
        }
        
        .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
        }
        
        .countdown-item {
            background: rgba(255,255,255,0.2);
            padding: 15px;
            border-radius: 12px;
            min-width: 80px;
        }
        
        .countdown-number {
            font-size: 32px;
            font-weight: 800;
            display: block;
        }
        
        .countdown-label {
            font-size: 12px;
            opacity: 0.9;
        }
        
        .benefit-card {
            background: white;
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(16, 33, 56, 0.1);
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
        }
        
        .benefit-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--laranja-destaque) 0%, #ff6635 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 32px;
        }
        
        .testimonial {
            background: white;
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(16, 33, 56, 0.1);
            margin: 20px 0;
        }
        
        .stars {
            color: #ffd700;
            font-size: 20px;
            margin-bottom: 15px;
        }
        

        
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25d366;
            color: white;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            z-index: 1000;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
            animation: bounce 2s infinite;
            text-decoration: none;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .text-gradient {
            background: linear-gradient(135deg, var(--laranja-destaque) 0%, #ff6635 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            
            .countdown-timer {
                gap: 10px;
            }
            
            .countdown-item {
                min-width: 60px;
                padding: 10px;
            }
            
            .countdown-number {
                font-size: 24px;
            }
            
            .price-new {
                font-size: 36px;
            }
            
            .btn-primary {
                padding: 15px 30px;
                font-size: 16px;
            }
        }