:root {
    --primary-color: #1873D1;
    --secondary-color: #FC8307;
    --accent-color: #13E500;
    --text-dark: #2D2D2D;
    --text-light: #FFFFFF;
    --bg-light: #F9FAFB;
    --bg-gray: #F3F4F6;
    --bg-dark: #242424;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-white { color: var(--text-light); }
.mt-4 { margin-top: 2rem; }
.font-normal { font-weight: 400; }
.highlight-orange { color: var(--secondary-color); }

/* Buttons */
.cta-button {
    display: inline-block;
    background-image: linear-gradient(45deg, #23AF0C, #00FF0A, #23AF0C, #00FF0A);
    background-size: 400% 200%;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(19, 229, 0, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    animation: textura 3.4s cubic-bezier(0.2, 0.5, 0.9, 0.6) 2s infinite normal none running;
}

.cta-button.large {
    font-size: 1.8rem;
    padding: 20px 40px;
    width: 100%;
    max-width: 500px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 25px rgba(19, 229, 0, 0.6);
}

@keyframes textura {
    0% { background-position: 0 0; }
    100% { background-position: 100% 0; }
}

/* Animations */
.pulse {
    animation: pulse-animation 2s infinite;
}

.pulse-slow {
    animation: pulse-animation 3s infinite;
}

@keyframes pulse-animation {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.is-visible { opacity: 1; transform: translate(0); }

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(140deg, var(--secondary-color), var(--primary-color));
    padding: 80px 0 150px;
    color: var(--text-light);
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text { flex: 1; }
.hero-image { flex: 1; text-align: center; }
.hero-image img { max-width: 100%; height: auto; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3)); border-radius: 20px; }

.hero h1 { font-size: 2.5rem; margin-bottom: 20px; letter-spacing: -1px; }
.hero .subtitle { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }

.price-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.2);
}

.old-price { font-size: 1.5rem; color: #FFD1D1; margin-bottom: -5px; }
.new-price-text { font-size: 1.2rem; font-weight: 600; margin-bottom: -15px; }
.new-price { font-size: 4rem; font-weight: 800; color: #47CB59; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.guarantee { font-weight: 700; font-size: 1.2rem; }

.custom-shape-divider-bottom-1683050962 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1683050962 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

/* Problem Section */
.problem-section { padding: 80px 20px; }
.section-title { font-size: 2rem; margin-bottom: 40px; color: var(--text-dark); }
.problem-list { display: flex; flex-direction: column; gap: 20px; max-width: 700px; margin: 0 auto; }
.problem-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-left: 5px solid var(--secondary-color);
}
.problem-item .icon { font-size: 2rem; }
.problem-item p { font-weight: 500; font-size: 1.1rem; }

/* Solution Section */
.solution-section { padding: 80px 20px; background: white; }
.solution-content { display: flex; align-items: center; gap: 40px; }
.solution-text { flex: 1; }
.solution-image { flex: 1; text-align: center; }
.solution-image img { max-width: 100%; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.highlight-bg { background-color: var(--secondary-color); color: white; display: inline-block; padding: 5px 15px; border-radius: 5px; margin: 20px 0; }
.features-list { list-style: none; margin-bottom: 20px; }
.features-list li { margin-bottom: 10px; font-weight: 500; }

/* How it works */
.how-it-works { padding: 80px 20px; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.step-card {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid var(--primary-color);
    box-shadow: 0 10px 20px rgba(24, 115, 209, 0.1);
    transition: transform 0.3s ease;
}
.step-card:hover { transform: translateY(-10px); }
.step-icon { font-size: 3rem; margin-bottom: 15px; color: var(--primary-color); }
.step-card h3 { color: var(--primary-color); margin-bottom: 15px; font-size: 1.2rem; }

/* Carousel Section */
.section-gray { background-color: var(--bg-gray); padding: 80px 0; }
.highlight-bg-inline { background: linear-gradient(120deg, #FFD1D1 0%, #FFD1D1 100%); background-repeat: no-repeat; background-size: 100% 40%; background-position: 0 80%; }
.carousel { position: relative; max-width: 800px; margin: 0 auto; overflow: hidden; border-radius: 20px; box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.carousel-track-container { width: 100%; }
.carousel-track { display: flex; list-style: none; transition: transform 0.5s ease-in-out; }
.carousel-slide { min-width: 100%; }
.carousel-slide img { width: 100%; display: block; }
.carousel-nav { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.carousel-indicator { width: 12px; height: 12px; border-radius: 50%; background: #ccc; border: none; cursor: pointer; transition: background 0.3s; }
.carousel-indicator.current-slide { background: var(--primary-color); }

/* Ideal Para */
.ideal-for-section { padding: 80px 20px; }
.ideal-list { list-style: none; max-width: 600px; margin: 0 auto; }
.ideal-list li { background: white; padding: 15px 20px; margin-bottom: 15px; border-radius: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); font-weight: 500; display: flex; align-items: center; gap: 10px; }

/* Bonuses */
.section-blue { background-color: var(--primary-color); padding: 80px 0; color: white; }
.bonus-card { display: flex; align-items: center; gap: 40px; background: white; color: var(--text-dark); border-radius: 20px; padding: 40px; margin-bottom: 30px; box-shadow: 0 15px 30px rgba(0,0,0,0.2); }
.bonus-card.reverse { flex-direction: row-reverse; }
.bonus-text { flex: 1; }
.bonus-image { flex: 1; text-align: center; }
.bonus-image img { max-width: 100%; border-radius: 15px; }

/* Offer Section */
.offer-section { background: radial-gradient(circle, #2F2F2F 0%, #242424 100%); padding: 80px 0; }
.pricing-card {
    background: white;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 20px;
    border: 3px dashed var(--accent-color);
    padding: 40px;
    text-align: center;
    box-shadow: 0 0 30px rgba(19, 229, 0, 0.2);
}
.offer-badge { background: #FF3232; color: white; display: inline-block; padding: 10px 20px; border-radius: 10px; margin-bottom: 10px; }
.best-deal { color: var(--text-dark); margin-bottom: 20px; font-size: 1.2rem; }
.offer-features { list-style: none; text-align: left; margin: 0 auto 20px; max-width: 300px; }
.offer-features li { margin-bottom: 10px; font-weight: 600; }
.guarantee-box { background: #E8F5E9; color: #2E7D32; padding: 10px; border-radius: 10px; font-weight: 700; margin-bottom: 20px; }
.total-value { color: #E43B2C; font-weight: 700; font-size: 1.2rem; }
.today-price-label { font-weight: 600; margin-top: 10px; }
.final-price { font-size: 4.5rem; font-weight: 800; color: #00BD39; line-height: 1; margin-bottom: 20px; font-family: var(--font-heading); }
.scarcity { margin-top: 15px; font-weight: 600; font-size: 0.9rem; }

/* FAQ Section */
.faq-section { padding: 80px 20px; }
.summary-box { border: 3px dashed #01BD39; border-radius: 20px; padding: 30px; text-align: center; margin-bottom: 50px; background: white; }
.highlight-box { font-weight: 700; font-style: italic; margin-top: 15px; color: var(--primary-color); }
.faq-grid { display: grid; grid-template-columns: 1fr; gap: 30px; max-width: 800px; margin: 0 auto; }
.faq-item { background: white; padding: 25px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.faq-question { color: #EF0000; margin-bottom: 15px; font-size: 1.4rem; }

/* Footer */
.footer { background: #111; color: #aaa; padding: 40px 20px; font-size: 0.8rem; }
.footer .disclaimer { margin-bottom: 10px; }

/* Responsive */
@media (max-width: 768px) {
    .hero-content { flex-direction: column; text-align: center; }
    .hero h1 { font-size: 1.8rem; }
    .hero { padding: 60px 0 100px; }
    .new-price { font-size: 3rem; }
    .solution-content { flex-direction: column; }
    .bonus-card, .bonus-card.reverse { flex-direction: column; padding: 20px; text-align: center; }
    .final-price { font-size: 3.5rem; }
    .cta-button { font-size: 1.2rem; padding: 15px 30px; width: 100%; }
}
