/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
    max-width: 480px;
    margin: 0 auto;
    overflow-x: hidden;
    padding-bottom: 70px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== TOP BANNER ===== */
.top-banner {
    background-color: #1a7a1a;
    padding: 16px 20px;
    text-align: center;
}

.top-banner p {
    color: #ff0000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    line-height: 1.4;
}

.top-banner strong {
    color: #ff0000;
}

/* ===== HERO CONTENT ===== */
.hero-content {
    text-align: center;
    padding: 24px 16px 10px;
    background: #fff;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: #333;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #1a7a1a;
    line-height: 1.3;
    margin-bottom: 16px;
}

.hero-text {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 20px;
}

.ebook-image {
    display: flex;
    justify-content: center;
    padding: 0 20px;
    margin-bottom: 10px;
}

.ebook-image img {
    max-width: 280px;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3));
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    text-align: center;
    padding: 20px 16px 30px;
    background: #fff;
}

.pricing-badge {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: #333;
    margin-bottom: 8px;
}

.old-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #ff0000;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.price-label {
    font-size: 16px;
    color: #666;
    margin-bottom: 4px;
}

.new-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 48px;
    color: #1a7a1a;
    margin-bottom: 20px;
}

.benefits-list {
    text-align: left;
    max-width: 300px;
    margin: 0 auto 24px;
}

.benefits-list li {
    font-size: 15px;
    font-weight: 600;
    padding: 6px 0;
    color: #333;
}

.leaf {
    margin-right: 6px;
}

/* ===== CTA BUTTON ===== */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #1a7a1a 0%, #2d9b2d 50%, #1a7a1a 100%);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 16px;
    text-align: center;
    padding: 18px 32px;
    border-radius: 50px;
    border: 3px dashed #ffffff;
    outline: 3px solid #1a7a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
    box-shadow: 0 6px 20px rgba(26, 122, 26, 0.4);
    transition: all 0.3s ease;
    width: 90%;
    max-width: 380px;
}

.cta-button:hover,
.cta-button:active {
    transform: scale(1.03);
    box-shadow: 0 8px 28px rgba(26, 122, 26, 0.6);
}

/* Pulse animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.04); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* ===== SECTION BANNER ===== */
.section-banner {
    background-color: #1a5c1a;
    padding: 16px 20px;
    text-align: center;
    margin-bottom: 0;
}

.section-banner p,
.section-banner h3 {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
}

/* ===== GARRAFADAS LIST ===== */
.garrafadas-list-section {
    background: #fff;
    padding-bottom: 20px;
}

.garrafadas-list {
    padding: 16px 20px;
}

.garrafadas-list ul li {
    font-size: 14px;
    padding: 4px 0;
    color: #333;
    font-weight: 600;
}

.reminder-text {
    text-align: center;
    color: #ff0000;
    font-size: 16px;
    padding: 10px 20px;
    font-weight: 600;
}

.reminder-text strong {
    color: #1a7a1a;
}

/* ===== INDIGENOUS SECTION ===== */
.indigenous-section {
    text-align: center;
    padding: 20px 16px;
    background: #fff;
}

.indigenous-img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 24px;
    border-radius: 8px;
}

.recipe-types {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.recipe-type-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.leaf-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.recipe-type-item p {
    font-size: 16px;
    color: #333;
}

/* ===== SAMPLES SECTION ===== */
.samples-section {
    background: #fff;
}

.sample-card {
    padding: 24px 20px;
    text-align: center;
}

.sample-card.green-bg {
    background-color: #7bc67b;
}

.sample-card.white-bg {
    background-color: #ffffff;
}

.sample-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.4;
}

.red-text {
    color: #ff0000;
}

.sample-card img {
    width: 80%;
    max-width: 300px;
    margin: 0 auto 16px;
    border-radius: 8px;
}

.sample-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 30px 20px;
    text-align: center;
    background: #fff;
}

.step {
    margin-bottom: 30px;
}

.step-icon {
    margin-bottom: 12px;
}

.step h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: #fff;
    padding-bottom: 30px;
}

.testimonial-intro {
    text-align: center;
    padding: 16px 20px;
    font-size: 14px;
    color: #fff;
    background-color: #1a5c1a;
    line-height: 1.5;
}

.testimonial-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px 16px;
}

.testimonial-images img {
    width: 90%;
    max-width: 360px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ===== BONUS SECTION ===== */
.bonus-section {
    padding: 30px 16px;
    text-align: center;
    background: #fff;
}

.bonus-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: #ff0000;
    margin-bottom: 20px;
    line-height: 1.4;
}

.bonus-banner {
    background-color: #e8c800;
    padding: 14px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.bonus-banner p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #333;
}

.bonus-card {
    padding: 16px 0;
}

.bonus-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: #ff0000;
    margin-bottom: 8px;
}

.bonus-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #333;
    margin-bottom: 12px;
}

.bonus-card img {
    width: 60%;
    max-width: 200px;
    margin: 0 auto 12px;
}

.bonus-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    padding: 0 10px;
}

.bonus-divider {
    border: none;
    border-top: 1px solid #ddd;
    margin: 10px 0;
}

/* ===== FINAL CTA ===== */
.final-cta-section {
    padding: 0 0 30px;
    text-align: center;
    background: #fff;
}

.final-cta-box {
    background: linear-gradient(180deg, #ffffff 0%, #f0fff0 100%);
    border: 3px solid #1a7a1a;
    border-radius: 16px;
    margin: 0 16px;
    padding: 24px 16px 30px;
}

.premium-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 28px;
    color: #ff0000;
    margin-bottom: 8px;
}

.premium-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #333;
    text-decoration: underline;
    margin-bottom: 16px;
}

.product-full-img {
    width: 90%;
    max-width: 350px;
    margin: 0 auto 20px;
}

.final-cta-box .pricing-badge {
    font-size: 22px;
}

.final-cta-box .old-price {
    font-size: 20px;
}

.final-cta-box .new-price {
    font-size: 44px;
}

.attention-box {
    background: #fff3cd;
    border-left: 4px solid #ff0000;
    margin: 20px 16px;
    padding: 14px 16px;
    text-align: left;
    border-radius: 4px;
}

.attention-box p {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.payment-flags {
    padding: 16px;
    text-align: center;
}

.payment-flags img {
    max-width: 280px;
    margin: 0 auto;
}

/* ===== FLOATING CTA ===== */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    background: linear-gradient(135deg, #1a7a1a 0%, #2d9b2d 100%);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 16px;
    text-align: center;
    padding: 16px 20px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.floating-cta:hover,
.floating-cta:active {
    background: linear-gradient(135deg, #156015 0%, #1a7a1a 100%);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (min-width: 481px) {
    body {
        box-shadow: 0 0 30px rgba(0,0,0,0.1);
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 19px;
    }
    
    .new-price {
        font-size: 40px;
    }
    
    .cta-button {
        font-size: 14px;
        padding: 14px 24px;
    }
    
    .top-banner p {
        font-size: 16px;
    }
}
