* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.4;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Urgency Bar */
.urgency-bar {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    text-align: center;
    padding: 2px;
    font-weight: bold;
    font-size: 13px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Botão do menu móvel */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    margin-left: auto; /* Empurra o botão para a direita */
}

.menu-line {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Estilos do menu de navegação */
.nav {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1002;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Estilos para o menu móvel aberto */
.nav.active .nav-links {
    transform: translateX(0);
    right: 0;
}

.nav.active .nav-overlay {
    display: block;
    opacity: 1;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #1f2937;
}

.logo-subtitle {
    font-size: 10px;
    color: #059669;
    font-weight: bold;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    transition: color 0.3s;
}

.nav a:hover {
    color: #2563eb;
}

.cta-button {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fef2f2, #fed7aa, #fef3c7);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.1), rgba(239, 68, 68, 0.1));
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #1f2937;
}

.hero-text .highlight-red {
    color: #dc2626;
}

.hero-text .highlight-orange {
    color: #ea580c;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    background: #fef2f2;
    color: #b91c1c;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #4b5563;
}

.hero-text .problems {
    background: #e37b7b38;
    border-left: 4px solid #dc2626;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.hero-text .solution {
    background: #f0fdf4;
    border-left: 4px solid #16a34a;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.btn-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000000;
    padding: 15px 15px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    animation: pulse 2s infinite;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    border: 2px solid #2563eb;
    color: #2563eb;
    padding: 20px 40px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
}

.price-highlight {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    margin: 20px 0;
    font-size: 0.95rem;
}

.price-highlight p {
    color: #92400e;
    font-weight: bold;
    margin: 0;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.phone-frame {
    background: #000;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.phone-screen {
    background: white;
    border-radius: 42px;
    overflow: hidden;
    position: relative;
}

.phone-notch {
    background: #1f2937;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notch-indicator {
    width: 60px;
    height: 4px;
    background: #6b7280;
    border-radius: 2px;
}

.phone-content {
    min-height: 600px;
}

.menu-header {
    text-align: center;
    margin-bottom: 30px;
}

.menu-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 5px;
}

.menu-item {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.menu-category {
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-name {
    color: #4b5563;
}

.item-price {
    font-weight: bold;
    color: #16a34a;
}

.qr-badge {
    position: absolute;
    bottom: -20px;
    right: -80px;
    background: white;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 4px solid #16a34a;
}

.qr-icon {
    font-size: 60px;
    color: #16a34a;
}

.qr-text {
    font-size: 10px;
    text-align: center;
    margin-top: 5px;
    font-weight: bold;
    color: #16a34a;
}

.success-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: #16a34a;
    color: white;
    border-radius: 25px;
    padding: 10px 15px;
    font-size: 12px;
    font-weight: bold;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Benefits Section */
.benefits {
    background: linear-gradient(135deg, #1f2937, #21448f);
    color: white;
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: #fff;
    line-height: 1.2;
}

.section-header .highlight-yellow {
    color: #fbbf24;
}

.section-header p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    align-items: stretch;
    
    @media (max-width: 1200px) {
        grid-template-columns: repeat(2, 1fr);
    }
    
    @media (max-width: 768px) {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    background: rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: white;
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.icon-green { background: linear-gradient(135deg, #10b981, #059669); }
.icon-blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.icon-orange { background: linear-gradient(135deg, #f97316, #ea580c); }
.icon-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.icon-red { background: linear-gradient(135deg, #ef4444, #dc2626); }
.icon-indigo { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.icon-yellow { background: linear-gradient(135deg, #eab308, #ca8a04); }
.icon-pink { background: linear-gradient(135deg, #ec4899, #db2777); }

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 12px;
    color: white;
    text-align: center;
    width: 100%;
    line-height: 1.3;
    
    @media (max-width: 1200px) {
        font-size: 1rem;
    }
}

.benefit-card p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
    text-align: center;
    max-width: 100%;
    margin: 0;
    font-size: 0.9rem;
    
    @media (max-width: 1200px) {
        font-size: 0.85rem;
    }
}

.warning-box {
    background: #dc2626;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.warning-box h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.warning-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* How It Works */
.how-it-works {
    background: linear-gradient(135deg, #503489, #761d1d);
    color: white;
    padding: 50px 0;
}

.process-badge {
    display: inline-flex;
    align-items: center;
    background: #fbbf24;
    color: #000;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.step {
    text-align: center;
    position: relative;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 50px;
    color: #000;
    box-shadow: 0 15px 30px rgba(251, 191, 36, 0.3);
    position: relative;
}

.step-time {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #16a34a;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: bold;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fbbf24;
}

.step p {
    color: #bfdbfe;
    line-height: 1.6;
}

.results-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.result-item {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 20px;
}

.result-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.result-label {
    font-size: 0.9rem;
    color: #000000;
}

/* Testimonials */
.testimonials {
    background: white;
    padding: 50px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial {
    background: linear-gradient(135deg, #f0fdf4, #dbeafe);
    border-radius: 12px;
    padding: 25px;
    position: relative;
    border: 2px solid #16a34a;
    transition: all 0.3s;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.testimonial-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #16a34a;
    color: white;
    padding: 8px 20px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.quote-icon {
    font-size: 30px;
    color: #2563eb;
    margin-bottom: 20px;
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.star {
    color: #fbbf24;
    font-size: 20px;
}

.testimonial-text {
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 500;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.author-info h4 {
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 2px;
}

.author-info p {
    color: #6b7280;
    font-size: 0.9rem;
}

.testimonial-savings {
    background: #f0fdf4;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.testimonial-savings p {
    color: #16a34a;
    font-weight: bold;
    font-size: 0.9rem;
    margin: 0;
}

.social-proof {
    background: linear-gradient(135deg, #b16d27, #d8731d);
    border-radius: 20px;
    padding: 40px;
    color: white;
    text-align: center;
}

.social-proof h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item {
    background: rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 20px;
}

.stat-icon {
    font-size: 30px;
    color: #2c097c;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #bfdbfe;
}

/* Pricing */
.pricing {
    background: linear-gradient(135deg, #fef2f2, #fed7aa);
    padding: 50px 0;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    background: #fef2f2;
    color: #b91c1c;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.comparison-card {
    border-radius: 20px;
    padding: 40px;
    border: 2px solid;
}

.comparison-bad {
    background: #fef2f2;
    border-color: #fca5a5;
}

.comparison-good {
    background: #f0fdf4;
    border-color: #86efac;
    position: relative;
}

.best-choice-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #16a34a;
    color: white;
    padding: 8px 20px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.comparison-title {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.comparison-bad .comparison-title {
    color: #b91c1c;
}

.comparison-good .comparison-title {
    color: #16a34a;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #4b5563;
}

.comparison-bad .comparison-list li::before {
    content: '✗';
    width: 25px;
    height: 25px;
    background: #dc2626;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.comparison-good .comparison-list li::before {
    content: '✓';
    width: 25px;
    height: 25px;
    background: #16a34a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.pricing-card {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.3);
    overflow: hidden;
    position: relative;
}

.pricing-header {
    background: #fbbf24;
    color: #000;
    text-align: center;
    padding: 15px;
    font-weight: bold;
}

.pricing-content {
    padding: 10px 30px;
    text-align: center;
    color: white;
}

.pricing-icon {
    font-size: 80px;
    color: #fbbf24;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: #bfdbfe;
    margin-bottom: 40px;
}

.price-comparison {
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 40px;
}

.price-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.price-main {
    text-align: center;
}

.price-number {
    font-size: 3rem;
    font-weight: bold;
    color: #fbbf24;
}

.price-period {
    font-size: 1.2rem;
    color: #bfdbfe;
}

.price-old {
    text-align: center;
}

.price-old-number {
    font-size: 2rem;
    font-weight: bold;
    color: #fca5a5;
    text-decoration: line-through;
}

.price-old-label {
    font-size: 1rem;
    color: #bfdbfe;
}

.vs-text {
    font-size: 2rem;
    color: white;
}

.savings-highlight {
    background: #16a34a;
    color: white;
    border-radius: 15px;
    padding: 20px;
    font-weight: bold;
    font-size: 1.2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.feature-section h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fbbf24;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    color: #ffffff;
}

.feature-list li::before {
    content: '✓';
    color: #16a34a;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.bonus-list li::before {
    content: '✓';
    color: #fbbf24;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.urgency-counter {
    background: #dc2626;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 40px;
}

.urgency-counter h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.counter-number {
    font-size: 4rem;
    font-weight: bold;
    color: #fbbf24;
    margin-bottom: 10px;
}

.counter-label {
    font-size: 1.2rem;
}

.guarantee {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
}

.guarantee p {
    color: #92400e;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0;
}

/* FAQ */
.faq {
    background: linear-gradient(135deg, #f9fafb, #dbeafe);
    padding: 50px 0;
}

.faq-list {
    margin-bottom: 60px;
}

.faq-item {
    border: 2px solid #bfdbfe;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    background: white;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 15px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #dbeafe;
}

.faq-icon {
    font-size: 24px;
    color: #2563eb;
    transition: transform 0.3s;
}

.faq-answer {
    padding: 5px 15px 5px;
    color: #4b5563;
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.final-warning {
    background: #dc2626;
    color: white;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
}

.final-warning h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.final-warning p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.remaining-spots {
    color: #fbbf24;
    margin-top: 20px;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #05004b;
    color: white;
    padding: 40px 0 0px;
}

.footer-cta {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-bottom: 60px;
}

.footer-cta h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-green { color: #16a34a; }
.contact-blue { color: #3b82f6; }
.contact-red { color: #ef4444; }

.support-info {
    color: #16a34a;
    font-weight: bold;
    margin-top: 20px;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.whatsapp-button {
    background: #16a34a;
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
    transition: all 0.3s;
}

.whatsapp-button:hover {
    background: #15803d;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-tagline {
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        transition: right 0.3s ease;
        overflow-y: auto;
    }
    
    .nav-links a {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }
    
    .nav-links .cta-button {
        margin-top: 20px;
        text-align: center;
        padding: 12px 20px;
    }
    
    /* Animação do botão do menu */
    .mobile-menu-btn.active .menu-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .mobile-menu-btn.active .menu-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active .menu-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* Estilos para a grid de features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-section h4 {
    color: #fbbf24;
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-section h4 i {
    font-size: 1.2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-list li:before {
    content: '•';
    color: #fbbf24;
    font-weight: bold;
    font-size: 1.2rem;
}

.bonus-list li:before {
    color: #4ade80;
}

/* Estilos para a seção de comparação de preços */
.price-comparison {
    margin: 25px 0;
}

.price-vs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 15px;
}

.price-main, .price-old {
    flex: 1;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.price-main {
    background: #f0fdf4;
    border: 1px solid #86efac;
}

.price-old {
    background: #fef2f2;
    border: 1px solid #fca5a5;
}

.price-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #16a34a;
    margin-bottom: 10px;
}

.price-old-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #dc2626;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.vs-text {
    font-weight: bold;
    font-size: 1.2rem;
    color: #ffffff;
}

.savings-highlight {
    background: #4dcd00;
    border: 1px solid #266102;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    color: #000;
    margin-top: 15px;
}

.small {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 8px;
    display: block;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-section {
        padding: 15px;
    }
    
    .pricing-icon {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
    
    .pricing-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .price-vs {
        flex-direction: column;
        gap: 15px;
    }
    
    .price-main, .price-old {
        width: 100%;
        padding: 15px;
    }
    
    .vs-text {
        margin: 5px 0;
    }
    
    .price-number {
        font-size: 1.5rem;
    }
    
    .price-old-number {
        font-size: 1.3rem;
    }
    
    .savings-highlight {
        padding: 12px 10px;
        font-size: 0.9rem;
    }
    
    .small {
        font-size: 0.8rem;
    }
    
    .urgency-badge {
        font-size: 14px;
        padding: 8px 12px;
        margin-bottom: 15px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .benefits-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Utilities */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.hidden { display: none; }



        /* Slider Styles */
        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            border-radius: 12px;
        }
        
        .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }
        
        .slide {
            min-width: 100%;
            height: 100%;
        }
        
        .slider-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }
        
        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
            z-index: 10;
        }
        
        .slider-btn:hover {
            background: rgba(0, 0, 0, 0.7);
        }
        
        .prev-btn {
            left: 10px;
        }
        
        .next-btn {
            right: 10px;
        }
        
        .slider-dots {
            position: absolute;
            bottom: 10px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 8px;
        }
        
        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .dot.active {
            background-color: #fff;
        }