:root {
    --primary-color: #2e7d32;
    --primary-light: #4caf50;
    --accent-color: #8bc34a;
    --dark-green: #1b5e20;
    --white: #ffffff;
    --light-bg: #f9fbf9;
    --text-dark: #1b1b1b;
    --text-muted: #666;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo-main {
    font-family: 'Fraunces', serif;
}

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

.grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

/* Typography */
h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark-green);
}

h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-green);
}

.text-gradient {
    background: linear-gradient(45deg, var(--dark-green), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.2);
}

.btn-primary:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(46, 125, 50, 0.3);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--dark-green);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-small {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    background-color: var(--dark-green);
    color: var(--white);
}

/* Header */
header {
    padding: 0.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100px;
}

.logo-brand {
    display: flex;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0.5rem 0;
}

.logo-main-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 8vw, 3.2rem);
    color: var(--primary-color);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.5px;
    position: relative;
}

.logo-leaf-i {
    position: relative;
    color: inherit;
}

.logo-leaf-i::after {
    content: '🍃';
    position: absolute;
    font-size: 1rem;
    top: -12px;
    left: -2px;
    transform: rotate(-15deg);
}

.logo-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: lowercase;
    letter-spacing: 1.5px;
    margin-top: -2px;
}

.footer-logo .logo-main-text {
    color: var(--primary-color);
    font-size: 2.5rem;
}

.footer-logo .logo-subtitle {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero */
.hero {
    padding: 8rem 0 4rem;
    background: radial-gradient(circle at top right, rgba(139, 195, 74, 0.1), transparent);
}

.hero .grid {
    grid-template-columns: 1fr 1fr;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(139, 195, 74, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.availability {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

/* Features */
#features {
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* Products */
.products {
    padding: 8rem 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.product-card {
    background: var(--light-bg);
    border-radius: 25px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow);
}

.product-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    margin-bottom: 0.5rem;
}

.ingredients {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.benefits {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Recipes Section */
.recipes-section {
    padding: 10rem 0;
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.recipe-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.recipe-card:hover {
    transform: translateY(-5px);
}

.recipe-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.recipe-content {
    padding: 2rem;
}

.recipe-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(46, 125, 50, 0.1);
    color: var(--primary-color);
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.recipe-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.recipe-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Offers */
.offer-section {
    padding: 5rem 0 10rem;
}

.offer-card {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-color));
    color: var(--white);
    padding: 4rem;
    border-radius: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-content h3 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.intro-text {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.offer-cta {
    margin: 3rem 0 1rem;
}

.wa-btn-large {
    background: #25d366;
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

.wa-btn-large:hover {
    background: #128c7e;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
}

/* Footer */
footer {
    padding-bottom: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 5rem;
}

.footer-about .logo {
    height: 80px;
}

.footer-about img {
    height: 100px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: var(--dark-green);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }

    .hero .grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .recipe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav {
        min-height: 70px;
    }

    .features-grid,
    .product-grid,
    .recipe-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        padding: 5rem 2rem;
        box-shadow: none;
        gap: 2rem;
        z-index: 999;
        text-align: center;
        justify-content: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        position: relative;
        z-index: 1001;
    }

    .hero .grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-image {
        max-width: 90%;
        margin: 0 auto;
    }

    .hero-image img {
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }

    .logo-main-text {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .container {
        padding: 0 1.5rem;
    }
}

/* Floating WhatsApp Button */
.floating-wa {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.floating-wa:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Utility for naturalizing over-enhanced greens */
.natural-greens {
    filter: saturate(0.65) contrast(1.1) brightness(0.98);
}

.brighten-contrast {
    filter: brightness(1.15) contrast(1.15);
}