/* Global Styles & Variables */
:root {
    --primary-yellow: #fbbf24;
    --secondary-yellow: #fcd34d;
    --primary-red: #dc2626;
    --primary-green: #10b981;
    --dark-green: #047857;
    --bg-dark: #111827;
    --text-dark: #1f2937;
    --text-light: #f3f4f6;
    --white: #ffffff;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-800: #1f2937;
    
    --font-main: 'Inter', sans-serif;
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.5;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

section {
    padding: 3rem 1rem;
}

h1, h2, h3, h4, .huge-text {
    font-weight: 900;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.pulse {
    animation: pulse 2s infinite;
}

.fade-in {
    opacity: 0; 
    animation: fadeIn 0.8s ease-out forwards;
}

/* Helper Classes */
.red-text { color: var(--primary-red); }
.green-text { color: var(--primary-green); }
.yellow-text { color: var(--primary-yellow); }
.check-icon { color: var(--primary-green); font-size: 1.25rem; font-weight: bold; background: #d1fae5; border-radius: 50%; padding: 0.2rem; display: inline-flex;}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow), var(--primary-yellow));
    padding: 4rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    opacity: 0.1;
}

.blob {
    position: absolute;
    background: #000;
    border-radius: 50%;
    filter: blur(80px);
}

.blob-1 { width: 300px; height: 300px; top: -50px; left: -50px; }
.blob-2 { width: 400px; height: 400px; bottom: -100px; right: -100px; }

.logo-container { margin-bottom: 2rem; }
.logo { height: 60px; object-fit: contain; }

.hero-title {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #000;
}

.hero-box {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-box .underline { text-decoration: underline; text-decoration-thickness: 3px; }

.cta-button {
    background-color: #000;
    color: var(--primary-yellow);
    font-size: 1.2rem;
    font-weight: 900;
    padding: 1rem 2rem;
    border-radius: 9999px;
    box-shadow: 0 10px 15px rgba(251, 191, 36, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 20px rgba(251, 191, 36, 0.6);
}

.hero-guarantee {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 600;
}

/* Video Section */
.video-section {
    background: linear-gradient(to bottom, #fff, #f9fafb);
    text-align: center;
}

.section-header { margin-bottom: 2rem; }
.section-header h2 { font-size: 2rem; margin-bottom: 0.5rem; color: var(--gray-800); }
.highlight-text { color: var(--primary-red); font-weight: 700; font-size: 1.1rem; }

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: #000;
}

.video-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    cursor: pointer;
}

.video-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.play-button-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.play-button i { font-size: 3rem; color: #fff; margin-left: 5px; }
.video-wrapper:hover .play-button { transform: scale(1.1); }

.video-text {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    text-align: left;
    color: #fff;
}

.video-title { font-weight: 700; font-size: 1.2rem; }
.video-subtitle { font-size: 0.9rem; opacity: 0.9; }

.video-note { margin-top: 1.5rem; font-weight: 600; color: var(--gray-800); }

/* Problem Section */
.problem-section {
    background: linear-gradient(135deg, #fef2f2, #fff7ed);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--gray-800);
}

.problem-box {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 4px solid var(--primary-red);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.problem-content { text-align: left; }
.problem-highlight { font-size: 1.5rem; font-weight: 800; color: var(--primary-red); margin-bottom: 1rem; }
.problem-text { font-size: 1.2rem; font-weight: 600; color: var(--gray-800); margin-bottom: 1rem; }

.trash-badge {
    background: var(--primary-red);
    color: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: 0.5rem;
    font-weight: 900;
}

.warning-box {
    background: #fef9c3;
    border-left: 8px solid #eab308;
    padding: 1.5rem;
    border-radius: 0 1rem 1rem 0;
    margin: 2rem 0;
    font-size: 1.1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: center;
}

.stat-card {
    padding: 1.5rem;
    border-radius: 1rem;
    border: 2px solid;
}

.red-theme { background: #fee2e2; border-color: #fca5a5; }
.orange-theme { background: #ffedd5; border-color: #fdba74; }
.yellow-theme { background: #fef9c3; border-color: #fde047; }

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-circle i { font-size: 1.8rem; color: #fff; }

.red-bg { background: var(--primary-red); }
.orange-bg { background: #ea580c; }
.yellow-bg { background: #ca8a04; }

.stat-label { font-weight: 700; margin-bottom: 0.5rem; }
.stat-value { font-size: 2rem; font-weight: 900; }

/* Features Section */
.features-section { background: linear-gradient(to bottom, #fff, #f9fafb); }
.subtitle { font-size: 1.2rem; color: #4b5563; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 2px solid var(--gray-100);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature-card:hover { transform: translateY(-5px); box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.feature-icon i { font-size: 2rem; color: #fff; }
.emerald-bg { background: linear-gradient(135deg, #10b981, #059669); }

.feature-title-row { display: flex; align-items: start; gap: 0.5rem; margin-bottom: 1rem; }
.feature-title-row h3 { font-size: 1.2rem; margin: 0; line-height: 1.2; }

.bonus-box {
    margin-top: 4rem;
    background: linear-gradient(to right, var(--primary-yellow), var(--secondary-yellow));
    padding: 3rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.bonus-title { font-size: 1.8rem; font-weight: 900; }
.bonus-text { font-size: 1.2rem; }

/* Comparison Section */
.comparison-section { background: linear-gradient(135deg, #111827, #000); color: #fff; }

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.comparison-card {
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.bad-option {
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.5), rgba(153, 27, 27, 0.5));
    border: 4px solid var(--primary-red);
}

.good-option {
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.5), rgba(4, 120, 87, 0.5));
    border: 4px solid var(--primary-green);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.badge {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    border-radius: 9999px;
    font-weight: 800;
    font-size: 0.8rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.badge-bad { background: var(--primary-red); color: #fff; }
.badge-good { background: var(--primary-green); color: #fff; }

.comparison-title { font-size: 1.8rem; margin-bottom: 2rem; padding-right: 5rem; }
.bad-title { color: #fca5a5; }
.good-title { color: #6ee7b7; }

.comparison-list { list-style: none; }
.comparison-list li { display: flex; align-items: start; margin-bottom: 1.5rem; }
.comparison-list .icon-circle.small { width: 40px; height: 40px; margin: 0; margin-right: 1rem; flex-shrink: 0; }
.comparison-list i { font-size: 1.2rem; }

.list-item-title { font-weight: 700; font-size: 1.1rem; }
.list-item-desc { font-size: 0.9rem; opacity: 0.9; }
.bad-desc { color: #fca5a5; }
.good-desc { color: #d1fae5; }

.comparison-image-container { margin-top: 2rem; border-radius: 1rem; overflow: hidden; height: 200px; }
.comparison-image { width: 100%; height: 100%; object-fit: cover; }
.opacity-60 { opacity: 0.6; }

.comparison-footer { text-align: center; font-size: 1.5rem; font-weight: 900; color: var(--primary-yellow); }

/* Testimonials Section */
.testimonials-section { background: linear-gradient(to bottom, #f9fafb, #fff); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gray-100);
}

.testimonial-header { display: flex; align-items: center; margin-bottom: 1.5rem; }
.testimonial-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary-yellow); margin-right: 1rem; }
.testimonial-info h3 { font-size: 1.1rem; }
.testimonial-info .role { font-size: 0.9rem; color: #6b7280; }
.stars { color: var(--primary-yellow); }

.testimonial-text { font-size: 1rem; font-weight: 500; color: var(--gray-800); margin-bottom: 1.5rem; }
.verified-purchase { font-size: 0.9rem; font-weight: 700; color: var(--dark-green); display: flex; align-items: center; gap: 0.5rem; }

.testimonials-total {
    margin-top: 4rem;
    text-align: center;
    background: #fef9c3;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 2px solid #fde047;
}
.total-number { font-size: 1.5rem; font-weight: 900; }

/* Offer Section */
.offer-section {
    background: linear-gradient(135deg, #059669, #10b981, #059669);
    position: relative;
    padding: 5rem 1rem;
    color: #fff;
    overflow: hidden;
}

.offer-bg-overlay .blob { background: #fff; opacity: 0.1; }
.blob-3 { width: 500px; height: 500px; top: -100px; left: -100px; }
.blob-4 { width: 500px; height: 500px; bottom: -100px; right: -100px; }

.offer-content { max-width: 900px; text-align: center; }

.offer-header { margin-bottom: 3rem; }
.limited-offer-badge {
    background: var(--primary-red);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.offer-title { font-size: 3rem; line-height: 1.1; margin-bottom: 1.5rem; }
.offer-subtitle { font-size: 1.5rem; margin-bottom: 2rem; }

.scarcity-box {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    display: inline-block;
    padding: 1.5rem;
    border-radius: 1rem;
}
.spots-left {
    background: var(--primary-yellow);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 900;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    display: inline-block;
}

.checkout-card {
    background: #fff;
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto;
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.price-header { margin-bottom: 2rem; }
.old-price { font-size: 1.5rem; text-decoration: line-through; color: #9ca3af; }
.new-price { font-size: 4rem; font-weight: 900; color: var(--primary-green); line-height: 1; margin: 0.5rem 0; }
.payment-info { font-weight: 700; color: #4b5563; }

.checkout-form .form-group { text-align: left; margin-bottom: 1rem; }
.checkout-form label { display: block; font-weight: 700; margin-bottom: 0.5rem; }
.checkout-form input {
    width: 100%;
    padding: 1rem;
    border-radius: 0.8rem;
    border: 2px solid var(--gray-200);
    font-size: 1rem;
}
.checkout-form input:focus { border-color: var(--primary-green); outline: none; }

.submit-button {
    width: 100%;
    background: linear-gradient(to right, #facc15, #eab308);
    padding: 1.5rem;
    border-radius: 0.8rem;
    font-size: 1.5rem;
    font-weight: 900;
    margin-top: 1rem;
    box-shadow: 0 10px 15px -3px rgba(250, 204, 21, 0.5);
    transition: transform 0.2s;
}
.submit-button:hover { transform: scale(1.02); }

.checkout-guarantees { margin-top: 2rem; text-align: left; font-size: 0.9rem; font-weight: 600; color: #4b5563; }
.guarantee-item { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.green-icon { color: var(--primary-green); font-size: 1.2rem; }
.yellow-icon { color: #eab308; font-size: 1.2rem; }

.offer-stats { margin-top: 4rem; }
.stats-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 2rem; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.stat-box { background: rgba(255, 255, 255, 0.2); padding: 1rem; border-radius: 1rem; }
.stat-number { font-size: 2rem; font-weight: 900; }
.stat-label { font-size: 0.9rem; }

/* Footer */
footer { background: #111827; color: #fff; padding: 4rem 1rem; text-align: center; }
.footer-logo { height: 50px; margin-bottom: 1.5rem; }
.footer-header h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.footer-header p { color: #9ca3af; max-width: 600px; margin: 0 auto 3rem; }

.footer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.footer-icon-bg { background: var(--primary-green); width: 50px; height: 50px; margin: 0 auto 1rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.footer-icon-bg-yellow { background: var(--primary-yellow); width: 50px; height: 50px; margin: 0 auto 1rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.footer-feature h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.footer-feature p { color: #9ca3af; font-size: 0.9rem; }

.footer-bottom { border-top: 1px solid #374151; padding-top: 2rem; }
.copyright-row { margin-bottom: 1rem; }
.footer-links a { color: #9ca3af; margin: 0 0.5rem; text-decoration: none; font-size: 0.9rem; }
.footer-links a:hover { color: #fff; }
.cnpj-row { color: #6b7280; font-size: 0.8rem; }


/* Responsive Design */
@media (max-width: 768px) {
    .hero-title { font-size: 1.8rem; }
    .hero-box { font-size: 1rem; }
    .cta-button { font-size: 1rem; padding: 1rem; width: 100%; }
    
    .section-title { font-size: 1.5rem; }
    
    .problem-content { text-align: center; }
    .warning-box { margin: 1.5rem -1rem; border-radius: 0; border-left: none; border-top: 4px solid #eab308; }
    
    .comparison-grid { grid-template-columns: 1fr; }
    .comparison-title { padding-right: 0; }
    
    .offer-title { font-size: 2rem; }
    .offer-subtitle { font-size: 1.1rem; }
    .new-price { font-size: 3rem; }
    .submit-button { font-size: 1.2rem; }
    
    .stats-row { grid-template-columns: 1fr; }
}
