:root {
    --primary: #008041;
    --secondary: #BD3F24;
    --black: #000000;
    --white: #FFFFFF;
    --light-green: #e6f7ed;
    --dark-green: #005c2f;
    --text-color: #000000;
    --bg-light: #f9f9f9;
    --font-main: 'Poppins', sans-serif;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.15);
    --gradient-hero: linear-gradient(135deg, #005c2f 0%, #008041 100%);
}

html {
    font-size: 18px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-align: center;
}

h2 {
    font-size: 20px;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.text-primary {
    color: var(--primary);
}

.text-accent {
    color: var(--white);
}

.text-white {
    color: var(--white) !important;
}

.bg-dark {
    background-color: var(--primary);
}

.bg-darkish {
    background-color: var(--primary);
}

.bg-light {
    background-color: var(--light-green);
    text-align: center;
    line-height: 1.2;
    color: var(--black);
}

.subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    margin-top: 0.5rem;
    text-align: center;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 32px 0 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('hero-pattern.png') repeat;
    /* Optional Pattern */
    opacity: 0.1;
    z-index: 0;
}

.logo-container {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.logo {
    max-height: 50px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.headline {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.headline .highlight {
    color: #ffd700;
    /* Gold for contrast */
    background: rgba(0, 0, 0, 0.2);
    padding: 0 5px;
    border-radius: 4px;
}

.subheadline {
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-weight: 400;
}

.hero-image {
    margin: 2rem auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    max-width: 600px;
    border: 4px solid var(--white);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 128, 65, 0.4);
    transition: transform 0.2s, background-color 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px);
    background-color: var(--dark-green);
}

.cta-button-red {
    background-color: var(--secondary);
    box-shadow: 0 4px 15px rgba(189, 63, 36, 0.4);
}

.cta-button-red:hover {
    background-color: #9a3320;
    transform: translateY(-3px);
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 128, 65, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(0, 128, 65, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 128, 65, 0);
    }
}

/* Sections General */
section {
    padding: 32px 0;
}

/* Proof Section */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.proof-item img {
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}

.proof-item img:hover {
    transform: scale(1.02);
}

/* Target Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-left: 4px solid var(--primary);
}

.feature-card .icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-card p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

/* Showcase Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.gallery-grid img {
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    /* object-fit: cover; removed to show full image */
    width: 100%;
    height: auto;
}

.highlight-text {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary);
    background: var(--light-green);
    padding: 1rem;
    border-radius: 8px;
    display: inline-block;
    width: 100%;
    margin-top: 20px;
}

/* Reasons Section */
.check-list-large {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.check-list-large li {
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
}

/* Bio Section */
.bio-content {
    background: var(--white);
    padding: 1rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid #eee;
}

.bio-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
}

/* Proof Grid 3 */
.proof-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.proof-grid-3 img {
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

/* Deliverables & Bonuses */
.deliverables-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.deliverables-image {
    flex: 1;
    min-width: 300px;
}

.deliverables-list {
    flex: 1;
    min-width: 300px;
}

.check-list li {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 500;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #ddd;
    box-shadow: var(--shadow-sm);
}

.bonus-card img {
    border-radius: 8px;
    margin-bottom: 1rem;
}

.bonus-card h3 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.bonus-card p {
    color: #555;
    font-size: 1rem;
}

/* Offer Box */
.offer-box {
    background: var(--white);
    border: 3px dashed var(--primary);
    border-radius: 20px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.summary-list {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.summary-list li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

.summary-list li::before {
    content: '✔️';
    margin-right: 10px;
    color: var(--primary);
}

.summary-list li.important {
    /* color removed to match others */
    font-weight: 700;
}

.price-container {
    margin: 2rem 0;
}

.old-price {
    color: #000;
    font-size: 1rem;
}

.price-strikethrough {
    text-decoration: line-through;
    color: var(--secondary);
}

.new-price {
    color: var(--primary);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.installments {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
}

.cta-button.big {
    font-size: 1rem;
    width: 100%;
    max-width: 500px;
}

.payment-methods img {
    margin: 1rem auto 0;
    max-width: 300px;
}

/* Guarantee */
.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    background: #fdfdfd;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #eee;
}

.guarantee-icon img {
    max-width: auto;
}

.guarantee-text {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: left;
    background: var(--white);
    transition: background-color 0.2s;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fdfdfd;
    color: #555;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
    /* Arbitrary large height */
}

.faq-item.active .toggle {
    transform: rotate(45deg);
}

.toggle {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
}

footer {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
}

/* Lightweight scroll animations */
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .headline {
        font-size: 24px;
    }

    .hero-section {
        padding: 32px 0 32px;
    }

    .cta-button {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }

    .bonus-card {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .offer-box {
        padding: 1.5rem;
    }

    .new-price {
        font-size: 4rem;
    }
}