/* ============================================
   landing.css - Landing page Bazani
   ============================================ */

.landing-body {
    min-height: 100vh;
    overflow-x: hidden;
    background-color: var(--bg-secondary);
}

/* === NAVBAR === */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: rgba(27, 94, 32, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
}

.landing-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
}

.landing-brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #66bb6a, #43a047);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

.landing-brand-name {
    font-size: 1.35rem;
}

.landing-nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    margin: 0 0.85rem;
    font-weight: 500;
    transition: color 0.2s;
}

.landing-nav-links a:hover,
.landing-nav-links a:focus-visible {
    color: #c8e6c9;
}

.landing-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.landing-theme-btn {
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.landing-theme-btn:hover,
.landing-theme-btn:focus-visible {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* === HERO === */
.landing-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 6rem 1rem 3rem;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
}

.landing-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(ellipse at center, rgba(27, 94, 32, 0.45) 0%, rgba(15, 46, 20, 0.75) 100%);
}

.landing-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    color: #fff;
}

.landing-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(6px);
}

.landing-hero-title {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.landing-hero-title .text-highlight {
    color: #c5e1a5;
}

.landing-hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.landing-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.landing-hero-stats {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.landing-hero-stats > div {
    display: flex;
    flex-direction: column;
}

.landing-hero-stats strong {
    font-size: 1.8rem;
    font-weight: 800;
    color: #c5e1a5;
}

.landing-hero-stats span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* === SECTIONS === */
.landing-section {
    padding: 5rem 0;
}

.landing-section-alt {
    background-color: var(--bg-tertiary);
}

.landing-eyebrow {
    display: inline-block;
    color: #2e7d32;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.dark-theme .landing-eyebrow,
.high-contrast-theme .landing-eyebrow {
    color: #81c784;
}

.landing-section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.landing-section-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.landing-checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.landing-checklist li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0;
    color: var(--text-primary);
    font-weight: 500;
}

.landing-checklist i {
    color: var(--accent-success);
    font-size: 1.15rem;
}

/* === FEATURE GRID (sobre) === */
.landing-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.landing-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 1rem;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s;
}

.landing-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.landing-feature-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.landing-feature-card strong {
    display: block;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.landing-feature-card span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* === PRODUCT CARDS === */
.landing-product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s;
}

.landing-product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.landing-product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
}

.landing-product-icon.avocado { background: linear-gradient(135deg, #66bb6a, #2e7d32); }
.landing-product-icon.fruit { background: linear-gradient(135deg, #ffa726, #ef6c00); }
.landing-product-icon.lime { background: linear-gradient(135deg, #d4e157, #afb42b); color: #1b5e20; }

.landing-product-card h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.landing-product-card p {
    color: var(--text-secondary);
    margin: 0;
}

/* === CTA SECTION === */
.landing-cta-section {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    padding: 5rem 0;
}

.landing-cta-section .landing-eyebrow {
    color: #c5e1a5;
}

/* === FOOTER === */
.landing-footer {
    background: #0d2e0f;
    color: #fff;
    padding: 1.75rem 0;
}

.landing-footer .landing-brand-name {
    color: #c5e1a5;
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
    .landing-feature-card,
    .landing-product-card {
        transition: none !important;
    }
    #hero-canvas {
        display: none;
    }
}

/* === MOBILE === */
@media (max-width: 576px) {
    .landing-feature-grid {
        grid-template-columns: 1fr;
    }
    .landing-hero-stats {
        gap: 1.5rem;
    }
    .landing-hero-stats strong {
        font-size: 1.4rem;
    }
}
