:root {
    --primary-green: #1a5c2e;
    --primary-light: #2d8a47;
    --primary-dark: #0f3d1f;
    --accent-gold: #f4a842;
    --bg-light: #f8faf8;
    --bg-cream: #fffef7;
    --text-dark: #1a2f1f;
    --text-muted: #5a6b5a;
    --gradient-hero: linear-gradient(135deg, #1a5c2e 0%, #2d8a47 50%, #4ab86a 100%);
    --gradient-gold: linear-gradient(135deg, #f4a842 0%, #ffd56b 100%);
    --shadow-md: 0 4px 16px rgba(26, 92, 46, 0.12);
    --shadow-lg: 0 8px 32px rgba(26, 92, 46, 0.16);
    --border-radius: 16px;
}
body { font-family: 'Open Sans', sans-serif; background: var(--bg-light); color: var(--text-dark); line-height: 1.7; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
.navbar { background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); box-shadow: var(--shadow-md); padding: 1rem 0; position: sticky; top: 0; z-index: 1000; }
.navbar-brand { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--primary-green) !important; display: flex; align-items: center; gap: 0.75rem; }
.navbar-brand i { font-size: 2rem; color: var(--primary-light); }
.nav-link { font-family: 'Montserrat', sans-serif; font-weight: 600; color: var(--text-dark) !important; padding: 0.5rem 1.25rem !important; border-radius: 50px; }
.nav-link:hover, .nav-link.active { background: var(--primary-green); color: white !important; }
.navbar-contact { display: flex; align-items: center; gap: 0.5rem; color: var(--primary-green); font-weight: 700; }
.hero { background: var(--gradient-hero); position: relative; padding: 6rem 0 8rem; overflow: hidden; }
.hero h1 { font-size: 3rem; color: white; margin-bottom: 1.5rem; }
.hero-lead { font-size: 1.3rem; color: rgba(255,255,255,0.95); margin-bottom: 2rem; }
.hero-badges { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.badge-custom { background: rgba(255,255,255,0.2); padding: 0.5rem 1rem; border-radius: 50px; font-weight: 600; display: flex; align-items: center; gap: 0.5rem; }
.btn-hero { background: white; color: var(--primary-green); padding: 1rem 2rem; border-radius: 50px; font-weight: 700; border: none; }
.btn-hero:hover { background: var(--accent-gold); color: var(--text-dark); }
.btn-hero-outline { background: transparent; color: white; padding: 1rem 2rem; border-radius: 50px; font-weight: 700; border: 2px solid white; }
.btn-hero-outline:hover { background: white; color: var(--primary-green); }
.products-section { background: var(--bg-cream); padding: 5rem 0; }
.product-card { background: white; border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow-md); transition: all 0.4s ease; height: 100%; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-image-wrapper { position: relative; overflow: hidden; height: 250px; }
.product-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.product-badge { position: absolute; top: 1rem; right: 1rem; padding: 0.4rem 1rem; border-radius: 50px; font-weight: 700; font-size: 0.85rem; }
.badge-hit { background: var(--gradient-gold); color: var(--text-dark); }
.badge-sale { background: #dc3545; color: white; }
.badge-premium { background: var(--primary-green); color: white; }
.badge-value { background: var(--accent-gold); color: var(--text-dark); }
.product-body { padding: 1.5rem; }
.product-title { font-size: 1.2rem; color: var(--primary-green); margin-bottom: 0.5rem; }
.product-size { display: inline-block; background: var(--bg-light); color: var(--primary-green); padding: 0.3rem 0.8rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600; }
.product-container { display: inline-block; background: var(--primary-green); color: white; padding: 0.2rem 0.6rem; border-radius: 6px; font-size: 0.8rem; font-weight: 700; margin-left: 0.5rem; }
.product-features { list-style: none; margin: 1rem 0; color: var(--text-muted); font-size: 0.9rem; }
.product-features li { padding: 0.3rem 0; padding-left: 1.5rem; position: relative; }
.product-features li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-light); }
.product-price { font-size: 1.5rem; color: var(--primary-green); font-weight: 800; margin: 1rem 0; }
.btn-product { width: 100%; padding: 0.8rem; background: var(--primary-green); color: white; border: none; border-radius: 50px; font-weight: 700; }
.btn-product:hover { background: var(--primary-light); }
section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 2.2rem; color: var(--primary-green); }
footer { background: var(--primary-dark); color: white; padding: 4rem 0 2rem; }
.footer-brand { font-size: 1.5rem; font-weight: 800; color: white; display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-brand i { color: var(--accent-gold); }
.footer-section h5 { color: var(--accent-gold); margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.85); }
.footer-links a:hover { color: var(--accent-gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; color: rgba(255,255,255,0.85); }
.footer-contact-item i { color: var(--accent-gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); margin-top: 2rem; padding-top: 1.5rem; text-align: center; }
.text-gradient { background: var(--gradient-hero); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.bg-pattern { background-image: radial-gradient(circle at 1px 1px, rgba(26, 92, 46, 0.05) 1px, transparent 0); background-size: 40px 40px; }
.features-section { padding: 5rem 0; }
.feature-card { text-align: center; padding: 2rem; border-radius: var(--border-radius); background: var(--bg-light); }
.feature-icon { width: 80px; height: 80px; background: var(--gradient-hero); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 2rem; color: white; }
.feature-card h3 { font-size: 1.2rem; color: var(--primary-green); margin-bottom: 0.5rem; }
.cta-section { background: var(--gradient-hero); color: white; text-align: center; padding: 4rem 0; }
.cta-section h2 { margin-bottom: 1.5rem; }
.btn-cta { background: white; color: var(--primary-green); padding: 1rem 2.5rem; border-radius: 50px; font-weight: 700; }
.category-badge { display: inline-block; background: var(--primary-green); color: white; padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1rem; }
.product-detail-title { font-size: 2rem; color: var(--primary-green); margin-bottom: 0.5rem; }
.latin-name { font-style: italic; font-size: 1rem; }
.product-specs { display: flex; flex-wrap: wrap; gap: 1rem; }
.spec-item { display: flex; align-items: center; gap: 0.5rem; }
.product-detail-price .price { font-size: 2rem; font-weight: 800; color: var(--primary-green); }
.feature-list { list-style: none; padding-left: 0; }
.feature-list li { padding: 0.5rem 0; display: flex; align-items: center; gap: 0.75rem; }
.feature-list i { color: var(--primary-light); }
.product-description { background: var(--bg-light); padding: 2rem; border-radius: var(--border-radius); }
.contact-item { display: flex; gap: 1rem; }
.contact-item i { font-size: 1.5rem; color: var(--primary-green); }
.info-card h3 { color: var(--primary-green); margin-bottom: 1rem; }
.info-list { list-style: none; }
.info-list li { padding: 0.5rem 0; display: flex; align-items: center; gap: 0.75rem; }
.info-list li i { color: var(--primary-light); }
@media (max-width: 768px) { .hero h1 { font-size: 2rem; } .section-header h2 { font-size: 1.8rem; } }
