:root {
    --primary: #1F8A70; /* Verde Vida */
    --secondary: #FD841F; /* Laranja Call To Action */
    --secondary-hover: #E87211;
    --dark: #121212; 
    --gray: #2A2A2A; 
    --light-gray: #F4F6F5;
    --text: #F3F3F3;
    --white: #FFFFFF;
    --heading-font: 'Outfit', sans-serif;
    --body-font: 'Outfit', sans-serif;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

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

/* Typography Base */
h1, h2, h3 {
    font-family: var(--heading-font);
    font-weight: 800;
    line-height: 1.2;
}
.highlight {
    color: var(--primary);
}

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

/* Util Classes */
.glassmorphism {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--white);
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(253, 132, 31, 0.4);
}

.cta-button:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(253, 132, 31, 0.6);
}

.cta-large {
    font-size: 1.5rem;
    padding: 20px 48px;
    width: 100%;
    max-width: 400px;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Header Flutuante */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    text-align: center;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid var(--glass-border);
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
}
.logo-leaf { color: var(--primary); }

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 60px; /* Header Space */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(18,18,18,0.7) 0%, rgba(18,18,18,0.95) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.scarcity-banner {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.5);
    color: #ff4d4d;
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.scarcity-banner #timer {
    font-variant-numeric: tabular-nums;
    font-weight: 800;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.2rem;
    color: #BDBDBD;
    margin-bottom: 40px;
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: var(--dark);
}
.wrapper-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}
.story-text, .story-image {
    flex: 1;
}
.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.story-text p {
    margin-bottom: 20px;
    color: #CCCCCC;
}
.story-text ul {
    list-style: none;
}
.story-text li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.story-image {
    position: relative;
    border-radius: 20px;
    padding: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, #0d4a3b 100%);
}
.story-image img {
    border-radius: 16px;
    width: 100%;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.floating-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--white);
    color: var(--dark);
    font-weight: 800;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Bonus Section */
.bonus-section {
    padding: 100px 0;
    background: #0D0D0D;
    text-align: center;
}
.section-title {
    font-size: 2.8rem;
    margin-bottom: 60px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bonus-card {
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.bonus-card:hover { transform: translateY(-10px); }

.bonus-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
}

.bonus-icon { font-size: 4rem; margin: 20px 0; }
.bonus-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--primary); }
.bonus-card p { font-size: 1rem; color: #aaa; margin-bottom: 20px; }
.bonus-value { font-weight: 600; color: #aaa; display: block;}
.bonus-value s { color: #ff4d4d; }
.free { color: var(--primary); font-weight: 800; font-size: 1.1rem; }

/* Special Main Pack Highlight */
.main-pack {
    border: 1px solid var(--primary);
    box-shadow: 0 0 30px rgba(31, 138, 112, 0.2);
}
.main-pack .prime { background: var(--primary); }
.main-pack .prime-val { color: var(--primary); font-size: 1.2rem;}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--dark);
    text-align: center;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 50px;
    padding: 0 50px;
}

.carousel-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    position: absolute;
    z-index: 10;
    transition: background 0.3s ease;
}
.carousel-btn:hover {
    background: var(--secondary);
}
.prev-btn { left: 0; }
.next-btn { right: 0; }

.carousel-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.testimo-card {
    flex: 0 0 calc(33.333% - 20px);
    background: var(--gray);
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    border-top: 4px solid var(--primary);
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .testimo-card {
        flex: 0 0 calc(50% - 15px);
    }
}
@media (max-width: 768px) {
    .testimo-card {
        flex: 0 0 100%;
    }
}
.stars { color: #f5b301; margin-bottom: 15px; font-size: 1.2rem; }
.testimo-card p { font-style: italic; color: #ccc; margin-bottom: 20px; font-size: 1.05rem; }
.author { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    margin-top: 15px;
}
.author img { 
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    object-fit: cover; 
    border: 2px solid var(--primary); 
}
.author-info { display: flex; flex-direction: column; }
.author-info strong { color: var(--white); }
.author-info span { font-size: 0.8rem; color: #888; }


/* Offer Section */
.offer-section {
    padding: 100px 0;
    background: url('../assets/salada.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    text-align: center;
}
.offer-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85); /* Dark overlay */
}

.offer-box {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
}

.offer-box h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 15px;
}
.offer-box .summary {
    color: #ccc;
    margin-bottom: 30px;
}
.price-old {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #ff4d4d;
    margin-bottom: 5px;
}
.price-new {
    font-size: 2rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 10px;
}
.big-price {
    font-size: 5rem;
    font-weight: 800;
}
.payment-methods {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 30px;
}
.guarantee {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #1F8A70;
    font-weight: 600;
}

/* Footer */
footer {
    background: #000;
    text-align: center;
    padding: 40px 20px;
}
footer .logo { margin-bottom: 20px; opacity: 0.5; }
footer p { color: #555; font-size: 0.8rem; margin-bottom: 10px; }
footer a { color: #888; text-decoration: none; font-size: 0.8rem; }
footer a:hover { color: var(--white); }

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1rem; }
    .wrapper-flex { flex-direction: column; text-align: center; }
    .story-text li { justify-content: center; }
    .section-title { font-size: 2rem; }
}
