/* Global Styles */
:root {
    --primary-color: #2E7D32;
    /* Dark Green - Medicine/Nature */
    --secondary-color: #FF5722;
    /* Vibrant Orange - Call to Action accent */
    --accent-color: #E8F5E9;
    /* Light Green Background */
    --text-dark: #212121;
    --text-light: #757575;
    --white: #ffffff;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #FAFAFA;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.btn-cta {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.6);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 87, 34, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0);
    }
}

/* Social Proof Toast */
.social-proof-toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    border-left: 5px solid var(--primary-color);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    transition: opacity 0.5s, transform 0.5s;
    max-width: 300px;
}

.social-proof-toast.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.toast-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ffffff 100%);
    padding: 60px 0;
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.hero-section .container {
    display: flex;
    flex-direction: row;
    /* Desktop default */
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.badge-exclusive {
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-headline {
    font-size: 3rem;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-subheadline {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.product-float {
    max-width: 350px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Product Presentation */
.product-presentation {
    padding: 80px 0;
    background: var(--white);
}

.presentation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.img-responsive {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-list-check {
    list-style: none;
    margin-top: 20px;
}

.benefit-list-check li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Benefits Grid */
.benefits-section {
    padding: 80px 0;
    background-color: var(--accent-color);
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #D32F2F;
    font-weight: bold;
    margin-bottom: 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    align-items: center;
}

.pricing-card {
    border: 1px solid #eee;
    padding: 40px 20px;
    border-radius: 20px;
    background: var(--white);
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pricing-card.popular {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.2);
    z-index: 10;
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.pricing-card .img-container img {
    height: 150px;
    object-fit: contain;
    margin: 20px 0;
}

.price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.price-current {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-installments {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* Guarantee */
.guarantee-section {
    padding: 60px 0;
    background: var(--text-dark);
    color: var(--white);
    text-align: center;
}

.guarantee-box img {
    width: 60px;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #888;
    padding: 40px 0;
    text-align: center;
}

.btn-cta-footer {
    display: inline-block;
    margin-top: 20px;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-cta-footer:hover {
    background: var(--white);
    color: var(--text-dark);
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: #f4f4f4;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-style: italic;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--primary-color);
}

.testimonial-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-color);
    font-style: normal;
}

.testimonial-placeholder-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Responsive Main Adjustments */
@media (max-width: 768px) {
    .hero-section .container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-headline {
        font-size: 2.2rem;
    }

    .presentation-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: scale(1);
    }
}