
        /* CONFIGURAÇÕES GERAIS */
        :root {
            --primary-blue: #2563eb;
            --primary-orange: #f97316;
            --dark-blue: #1e40af;
            --light-gray: #f8fafc;
            --medium-gray: #64748b;
            --dark-gray: #334155;
            --white: #ffffff;
            --success-green: #10b981;
            --urgent-red: #dc2626;
            --warning-yellow: #fbbf24;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
            background-color: var(--white);
        }
        
        /* COUNTDOWN TIMER */
        .countdown-bar {
            background: linear-gradient(90deg, var(--urgent-red) 0%, #b91c1c 100%);
            color: var(--white);
            padding: 15px 0;
            text-align: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(220, 38, 38, 0.3);
            animation: pulse 2s infinite;
        }
        
        .countdown-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .countdown-text {
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .countdown-timer {
            display: flex;
            gap: 15px;
            align-items: center;
        }
        
        .time-unit {
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 12px;
            border-radius: 8px;
            text-align: center;
            min-width: 60px;
        }
        
        .time-number {
            font-size: 1.5rem;
            font-weight: 800;
            display: block;
        }
        
        .time-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            opacity: 0.9;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.9; }
        }
        
        /* HERO SECTION */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
            color: var(--white);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('hero-image.jpg') center/cover;
            opacity: 0.1;
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 2.5rem;
            opacity: 0.95;
        }
        
        .cta-button {
            background: var(--primary-orange);
            color: var(--white);
            padding: 18px 40px;
            font-size: 1.3rem;
            font-weight: 700;
            border: none;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cta-button:hover {
            background: #ea580c;
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(249, 115, 22, 0.4);
            color: var(--white);
        }
        
        /* BENEFITS SECTION */
        .benefits-section {
            padding: 80px 0;
            background: var(--light-gray);
        }
        
        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--dark-blue);
        }
        
        .benefit-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
            border: 2px solid transparent;
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            border-color: var(--primary-orange);
        }
        
        .benefit-icon {
            font-size: 3.5rem;
            color: var(--primary-orange);
            margin-bottom: 1.5rem;
        }
        
        .benefit-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark-blue);
        }
        
        .benefit-description {
            font-size: 1.1rem;
            color: var(--medium-gray);
            line-height: 1.7;
        }
        
        /* PORTFOLIO SECTION */
        .portfolio-section {
            padding: 80px 0;
            background: var(--white);
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 3rem;
        }
        
        .portfolio-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 250px;
            cursor: pointer;
        }
        
        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }
        
        .portfolio-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .portfolio-item:hover .portfolio-image {
            transform: scale(1.1);
        }
        
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(37, 99, 235, 0.9), rgba(249, 115, 22, 0.9));
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            text-align: center;
            padding: 20px;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }
        
        .portfolio-title {
            color: var(--white);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .portfolio-description {
            color: var(--white);
            font-size: 1rem;
            opacity: 0.9;
        }
        
        /* PLANS SECTION */
        .plans-section {
            padding: 80px 0;
            background: var(--light-gray);
        }
        
        .plan-card {
            background: var(--white);
            border: 3px solid var(--light-gray);
            border-radius: 25px;
            padding: 3rem 2.5rem;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .plan-card:hover {
            border-color: var(--primary-orange);
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }
        
        .plan-badge {
            background: var(--success-green);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-block;
            margin-bottom: 1.5rem;
        }
        
        .plan-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark-blue);
        }

        .plan-price_antes {
            font-size: 1.5rem;
            font-weight: 600;
            color: red;
            margin-bottom: 0.5rem;
            text-decoration: line-through;

        }
        
        
        .plan-price {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-orange);
            margin-bottom: 0.5rem;
        }
        
        .plan-price-detail {
            font-size: 1rem;
            color: var(--medium-gray);
            margin-bottom: 2rem;
        }
        
        .plan-features {
            list-style: none;
            padding: 0;
            margin-bottom: 2.5rem;
            text-align: left;
        }
        
        .plan-features li {
            padding: 0.8rem 0;
            border-bottom: 1px solid #e2e8f0;
            position: relative;
            padding-left: 2rem;
            font-size: 1.1rem;
        }
        
        .plan-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success-green);
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .plan-cta {
            background: var(--primary-orange);
            color: var(--white);
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            width: 100%;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .plan-cta:hover {
            background: #ea580c;
            transform: translateY(-2px);
            color: var(--white);
        }
        
        /* ACHIEVEMENTS SECTION - CORRIGIDO */
        .achievements-section {
            padding: 80px 0;
            background: var(--light-gray);
        }
        
        .achievement-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
            border: 2px solid transparent;
        }
        
        .achievement-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            border-color: var(--primary-orange);
        }
        
        .achievement-icon {
            font-size: 3.5rem;
            color: var(--primary-orange);
            margin-bottom: 1.5rem;
        }
        
        .achievement-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark-blue);
        }
        
        .achievement-description {
            font-size: 1.1rem;
            color: var(--medium-gray);
            line-height: 1.6;
        }
        
        /* TESTIMONIALS SECTION */
        .testimonials-section {
            padding: 80px 0;
            background: var(--white);
        }
        
        .testimonial-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
            position: relative;
            border-left: 5px solid var(--primary-orange);
        }
        
        .testimonial-text {
            font-size: 1.2rem;
            font-style: italic;
            margin-bottom: 1.5rem;
            line-height: 1.7;
            color: var(--dark-gray);
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--primary-blue);
            font-size: 1.1rem;
        }
        
        .testimonial-role {
            color: var(--medium-gray);
            font-size: 1rem;
        }
        
        /* FAQ SECTION */
        .faq-section {
            padding: 80px 0;
            background: var(--light-gray);
        }
        
        .faq-item {
            background: var(--white);
            border-radius: 15px;
            margin-bottom: 1.5rem;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .faq-question {
            background: var(--primary-blue);
            color: var(--white);
            padding: 1.5rem 2rem;
            font-weight: 600;
            font-size: 1.2rem;
            margin: 0;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            width: 100%;
            text-align: left;
        }
        
        .faq-question:hover {
            background: var(--dark-blue);
        }
        
        .faq-answer {
            padding: 2rem;
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--dark-gray);
            display: none;
        }
        
        /* FOOTER */
        .footer {
            background: var(--dark-gray);
            color: var(--white);
            padding: 3rem 0;
            text-align: center;
        }
        
        .footer-content {
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }
        
        .footer-contact {
            font-size: 1rem;
            opacity: 0.8;
        }
        
        /* FLOATING WHATSAPP BUTTON */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 1000;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            animation: bounce 2s infinite;
        }
        
        .whatsapp-float:hover {
            background-color: #128c7e;
            transform: scale(1.1);
            color: #FFF;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }
        
        /* RESPONSIVE */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .cta-button {
                font-size: 1.1rem;
                padding: 15px 30px;
            }
            
            .plan-card {
                margin-bottom: 2rem;
            }
            
            .countdown-content {
                flex-direction: column;
                gap: 10px;
            }
            
            .countdown-timer {
                gap: 10px;
            }
            
            .time-unit {
                min-width: 50px;
                padding: 6px 10px;
            }
            
            .time-number {
                font-size: 1.2rem;
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* ANIMATIONS */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }
        
        /* WHATSAPP BUTTON STYLES */
        .whatsapp-btn {
            background: #25d366;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }
        
        .whatsapp-btn:hover {
            background: #128c7e;
            transform: translateY(-2px);
            color: white;
        }
        
        .whatsapp-btn i {
            font-size: 1.3rem;
        }
        
        /* URGENCY ELEMENTS */
        .urgency-badge {
            background: var(--urgent-red);
            color: var(--white);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            animation: pulse 2s infinite;
        }
