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

:root {
    --green-dark: #2F3A23;
    --green-mid: #4B532D;
    --green-light: #6B7A3D;
    --green-pale: #E8EDDE;
    --cream: #FAF8F3;
    --cream-dark: #F0ECE3;
    --text: #3A3A3A;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --font-brand: 'Caveat', cursive;
    --font-body: 'DM Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 248, 243, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 1px 12px rgba(47, 58, 35, 0.08);
}

.nav {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-family: var(--font-brand);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--green-dark);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--green-mid);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-mid);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 60px;
    background: linear-gradient(
        180deg,
        var(--cream) 0%,
        var(--cream-dark) 100%
    );
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-family: var(--font-brand);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.1;
    margin-bottom: 12px;
}

.hero-subtitle {
    font-family: var(--font-brand);
    font-size: 1.5rem;
    color: var(--green-mid);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 28px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.hero-cta {
    display: inline-block;
    background: var(--green-mid);
    color: var(--white);
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-cta:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-logo {
    width: 100%;
    max-width: 460px;
    border-radius: 16px;
}

/* ===== Sections ===== */
.section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-brand);
    font-size: 2.4rem;
    color: var(--green-dark);
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 48px;
}

/* ===== About ===== */
.about {
    background: var(--white);
}

.about-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-quote {
    font-family: var(--font-brand);
    font-size: 1.45rem;
    color: var(--green-mid);
    font-style: italic;
}

.badge {
    background: var(--green-pale);
    color: var(--green-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== Products ===== */
.products {
    background: var(--cream);
}

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

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(47, 58, 35, 0.1);
}

.product-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card h3 {
    font-family: var(--font-brand);
    font-size: 1.5rem;
    color: var(--green-dark);
    padding: 16px 20px 4px;
}

.product-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 0 20px 20px;
    line-height: 1.6;
}

/* ===== Contact ===== */
.contact {
    background: var(--white);
    text-align: center;
}

.contact-text {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.contact-btn.whatsapp {
    background: #25D366;
    color: white;
}

.contact-btn.instagram {
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
    color: white;
}

/* ===== Footer ===== */
.footer {
    background: var(--green-dark);
    color: var(--green-pale);
    text-align: center;
    padding: 40px 24px;
}

.footer-brand {
    font-family: var(--font-brand);
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(250, 248, 243, 0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .nav-links.active {
        max-height: 300px;
        padding: 16px 0;
        box-shadow: 0 4px 12px rgba(47, 58, 35, 0.08);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 12px 24px;
        font-size: 1.05rem;
    }

    .nav-links a::after {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 100px 24px 60px;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-logo {
        max-width: 340px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .about-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero-logo {
        max-width: 280px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-badges .badge {
        font-size: 0.82rem;
        padding: 6px 16px;
    }

    .contact-btn {
        width: 100%;
        justify-content: center;
    }
}
