        :root {
            --primary: #ff6b35;
            --primary-dark: #e85a2a;
            --secondary: #2e4057;
            --light: #f7f7f7;
            --dark: #1e1e1e;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark);
            overflow-x: hidden;
        }
        
        .btn-primary-custom {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-primary-custom:hover {
            background-color: var(--primary-dark);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
        }
        
        .btn-outline-custom {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            padding: 10px 28px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-outline-custom:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-2px);
        }
        
        .hero-section {
            background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255,107,53,0.05) 0%, rgba(255,107,53,0) 70%);
            border-radius: 50%;
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero-title {
            font-size: 3.2rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--secondary);
        }
        
        .hero-title span {
            color: var(--primary);
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 30px;
        }
        
        .price-badge {
            background: var(--primary);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            display: inline-block;
            font-weight: 700;
            font-size: 1.3rem;
            margin: 20px 0;
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--secondary);
            text-align: center;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px;
        }
        
        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s;
            height: 100%;
            border: 1px solid rgba(255,107,53,0.1);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(255,107,53,0.1);
            border-color: var(--primary);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: rgba(255,107,53,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .feature-icon i {
            font-size: 2rem;
            color: var(--primary);
        }
        
        .feature-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        .plan-card {
            background: white;
            border-radius: 30px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            border: 2px solid transparent;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .plan-card:hover {
            border-color: var(--primary);
            transform: scale(1.02);
            box-shadow: 0 25px 50px rgba(255,107,53,0.15);
        }
        
        .plan-card.popular {
            border-color: var(--primary);
            background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
        }
        
        .plan-card.popular::before {
            content: 'MAIS POPULAR';
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--primary);
            color: white;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 1px;
        }
        
        .plan-price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            margin: 20px 0;
        }
        
        .plan-price small {
            font-size: 1rem;
            color: #666;
            font-weight: normal;
        }
        
        .plan-features {
            list-style: none;
            padding: 0;
            margin: 30px 0;
        }
        
        .plan-features li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .plan-features li i {
            color: var(--primary);
            font-weight: bold;
        }
        
        .for-who-section {
            background: var(--light);
            padding: 80px 0;
        }
        
        .who-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            height: 100%;
        }
        
        .who-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255,107,53,0.1);
        }
        
        .who-card i {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .who-card h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--secondary);
        }
        
        .problems-section {
            padding: 80px 0;
        }
        
        .problem-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .problem-item i {
            color: #ff4444;
            font-size: 1.5rem;
        }
        
        .solution-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .solution-item i {
            color: #00C851;
            font-size: 1.5rem;
        }
        
        .differential-box {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 50px;
            border-radius: 30px;
            margin: 50px 0;
        }
        
        .differential-box h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .differential-box p {
            font-size: 1.1rem;
            opacity: 0.95;
        }
        
        .cta-section {
            background: var(--secondary);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta-section .price-badge {
            background: var(--primary);
            font-size: 2rem;
            padding: 15px 40px;
            margin: 30px 0;
        }
        /* Badge de 7 dias grátis */
.badge-gratis {
    background: #28a745;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}

/* Animação sutil para chamar atenção (opcional) */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.badge-gratis:hover {
    animation: pulse 1s infinite;
}
        
        .footer {
            background: var(--dark);
            color: rgba(255,255,255,0.7);
            padding: 50px 0 20px;
        }
        
        .footer a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer a:hover {
            color: var(--primary);
        }
        
        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
        }
        
        .footer-logo span {
            color: var(--primary);
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .plan-card.popular::before {
                font-size: 0.7rem;
                padding: 5px 30px;
                right: -35px;
            }
        }
