/* ─── Reset + Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background: #fff; color: #1e293b; -webkit-font-smoothing: antialiased; line-height: 1.5; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ─── Tokens ─────────────────────────────────────────────────────────────── */
:root {
  --green:       #16a34a;
  --green-light: #22c55e;
  --green-dark:  #15803d;
  --green-soft:  #dcfce7;
  --green-bg:    #f0fdf4;
  --slate-50:    #f8fafc;
  --slate-100:   #f1f5f9;
  --slate-200:   #e2e8f0;
  --slate-400:   #94a3b8;
  --slate-500:   #64748b;
  --slate-600:   #475569;
  --slate-700:   #334155;
  --slate-800:   #1e293b;
  --slate-900:   #0f172a;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-full: 999px;
}

/* ─── Layout helpers ─────────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ─── Header ─────────────────────────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.97); backdrop-filter: blur(8px); border-bottom: 1px solid var(--slate-200); }
.site-header .container { height: 64px; display: flex; align-items: center; justify-content: space-between; }
.logo { font-weight: 800; font-size: 1.2rem; color: var(--green); display: flex; align-items: center; gap: 6px; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a { font-size: .875rem; font-weight: 500; color: var(--slate-600); transition: color .15s; }
.nav a:hover { color: var(--green); }
.btn-primary { background: var(--green); color: #fff; padding: 9px 22px; border-radius: var(--radius-full); font-size: .875rem; font-weight: 600; transition: background .15s, box-shadow .15s; display: inline-flex; align-items: center; gap: 4px; }
.btn-primary:hover { background: var(--green-dark); box-shadow: 0 4px 14px rgba(22,163,74,.3); }
.btn-outline { border: 2px solid var(--green); color: var(--green); padding: 9px 22px; border-radius: var(--radius-full); font-size: .875rem; font-weight: 600; transition: background .15s; display: inline-flex; align-items: center; gap: 4px; }
.btn-outline:hover { background: var(--green-soft); }
@media (max-width: 768px) { .nav { display: none; } }

/* ─── Breadcrumb ─────────────────────────────────────────────────────────── */
.breadcrumb { background: var(--slate-50); border-bottom: 1px solid var(--slate-200); }
.breadcrumb .container { padding-top: 8px; padding-bottom: 8px; display: flex; align-items: center; gap: 6px; font-size: .75rem; color: var(--slate-400); }
.breadcrumb a { color: var(--slate-400); transition: color .15s; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb .current { color: var(--slate-700); font-weight: 500; }

/* ─── Badge ──────────────────────────────────────────────────────────────── */
.badge { display: inline-flex; align-items: center; gap: 5px; background: var(--green-soft); color: var(--green); font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 14px; border-radius: var(--radius-full); }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; background: linear-gradient(135deg, #fff 0%, var(--green-bg) 60%, #fff 100%); padding: 72px 20px 64px; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, #d1fae5 1px, transparent 1px); background-size: 28px 28px; opacity: .5; pointer-events: none; }
.hero-blob1 { position: absolute; top: -80px; right: -80px; width: 320px; height: 320px; border-radius: 50%; background: var(--green-light); opacity: .08; filter: blur(60px); pointer-events: none; }
.hero-blob2 { position: absolute; bottom: -60px; left: -60px; width: 240px; height: 240px; border-radius: 50%; background: #86efac; opacity: .12; filter: blur(50px); pointer-events: none; }
.hero-inner { position: relative; max-width: 1100px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-content .badge { margin-bottom: 20px; }
.hero-content h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; color: var(--slate-900); margin-bottom: 20px; }
.hero-content p { font-size: 1.05rem; color: var(--slate-500); line-height: 1.7; margin-bottom: 32px; max-width: 460px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-chip { display: flex; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius-full); padding: 6px 14px; font-size: .75rem; color: var(--slate-500); box-shadow: 0 1px 4px rgba(0,0,0,.04); }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card { background: #fff; border-radius: 24px; box-shadow: 0 20px 60px rgba(0,0,0,.1); padding: 32px; width: 260px; text-align: center; border: 1px solid var(--slate-100); position: relative; }
.hero-card-emoji { font-size: 5rem; margin-bottom: 12px; display: block; }
.hero-card-name { font-weight: 700; font-size: 1.05rem; color: var(--slate-900); margin-bottom: 4px; }
.hero-card-price { color: var(--green); font-weight: 600; font-size: .875rem; margin-bottom: 8px; }
.hero-card-sub { font-size: .75rem; color: var(--slate-400); }
.hero-float-1 { position: absolute; top: -14px; left: -40px; background: #fff; border: 1px solid var(--slate-100); border-radius: 14px; padding: 8px 14px; font-size: .8rem; font-weight: 600; color: var(--slate-700); box-shadow: 0 4px 16px rgba(0,0,0,.08); white-space: nowrap; animation: float 3s ease-in-out infinite; }
.hero-float-2 { position: absolute; bottom: -14px; right: -30px; background: var(--green); color: #fff; border-radius: 14px; padding: 8px 14px; font-size: .8rem; font-weight: 600; box-shadow: 0 4px 16px rgba(22,163,74,.25); white-space: nowrap; animation: float 4s ease-in-out infinite; }
@media (max-width: 768px) { .hero-inner { grid-template-columns: 1fr; } .hero-visual { display: none; } }

/* ─── Stats bar ──────────────────────────────────────────────────────────── */
.stats-bar { background: var(--slate-900); padding: 32px 20px; }
.stats-bar .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-val { font-size: 1.75rem; font-weight: 800; color: #fff; display: block; }
.stat-label { font-size: .78rem; color: var(--slate-400); margin-top: 2px; }
@media (max-width: 640px) { .stats-bar .container { grid-template-columns: repeat(2, 1fr); } }

/* ─── Section wrapper ────────────────────────────────────────────────────── */
.section { padding: 64px 20px; }
.section-alt { background: var(--slate-50); }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header .badge { margin-bottom: 12px; }
.section-header h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: var(--slate-900); line-height: 1.2; }

/* ─── Feature cards ──────────────────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.feature-card { background: #fff; border: 1.5px solid var(--slate-200); border-radius: var(--radius-lg); padding: 28px; transition: transform .2s, box-shadow .2s; }
.feature-card:first-child { border-color: rgba(22,163,74,.3); background: rgba(240,253,244,.4); }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(22,163,74,.1); }
.feature-icon { width: 52px; height: 52px; background: #fff; border-radius: 14px; box-shadow: 0 4px 14px rgba(0,0,0,.06); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 18px; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--slate-900); margin-bottom: 8px; }
.feature-card p { font-size: .875rem; color: var(--slate-500); line-height: 1.6; }
@media (max-width: 768px) { .features-grid { grid-template-columns: 1fr; } }

/* ─── Products grid ──────────────────────────────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; max-width: 1100px; margin: 0 auto 32px; }
.product-card { background: #fff; border: 1.5px solid var(--slate-200); border-radius: var(--radius-lg); overflow: hidden; transition: transform .2s, box-shadow .2s; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(22,163,74,.12); }
.product-thumb { background: linear-gradient(135deg, var(--green-bg), #ecfdf5); height: 100px; display: flex; align-items: center; justify-content: center; font-size: 2.8rem; transition: transform .3s; }
.product-card:hover .product-thumb { transform: scale(1.1); }
.product-body { padding: 10px 12px 12px; }
.product-cat { font-size: .68rem; color: var(--slate-400); margin-bottom: 2px; }
.product-name { font-size: .82rem; font-weight: 600; color: var(--slate-800); line-height: 1.3; margin-bottom: 4px; }
.product-price { font-size: .82rem; font-weight: 700; color: var(--green); }
.products-cta { text-align: center; }
@media (max-width: 1024px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px)  { .products-grid { grid-template-columns: repeat(2, 1fr); } }

/* ─── Testimonials marquee ───────────────────────────────────────────────── */
.testimonials-section { padding: 48px 0; border-top: 1px solid var(--slate-200); border-bottom: 1px solid var(--slate-200); overflow: hidden; }
.testimonials-section .section-header { padding: 0 20px; }
.marquee-outer { overflow: hidden; }
.testimonial-card { flex-shrink: 0; width: 280px; background: #fff; border: 1.5px solid var(--slate-200); border-radius: var(--radius-lg); padding: 20px; margin: 0 8px; }
.t-stars { font-size: .875rem; margin-bottom: 10px; }
.t-text { font-size: .8rem; color: var(--slate-600); line-height: 1.6; margin-bottom: 14px; }
.t-author { display: flex; align-items: center; gap: 10px; }
.t-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--green-soft); color: var(--green); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .875rem; flex-shrink: 0; }
.t-name { font-size: .8rem; font-weight: 600; color: var(--slate-800); }
.t-city { font-size: .72rem; color: var(--slate-400); }

/* ─── About grid ─────────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; max-width: 1100px; margin: 0 auto; }
.about-text .badge { margin-bottom: 18px; }
.about-text h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--slate-900); line-height: 1.25; margin-bottom: 18px; }
.about-text p { font-size: .9rem; color: var(--slate-500); line-height: 1.7; margin-bottom: 12px; }
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-card { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 18px; transition: transform .2s, box-shadow .2s; }
.about-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(22,163,74,.08); }
.about-card-icon { font-size: 1.8rem; margin-bottom: 8px; }
.about-card-title { font-size: .875rem; font-weight: 600; color: var(--slate-800); margin-bottom: 4px; }
.about-card-text { font-size: .75rem; color: var(--slate-500); line-height: 1.5; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq-wrap { max-width: 680px; margin: 0 auto; }
.faq-item { background: #fff; border: 1.5px solid var(--slate-200); border-radius: var(--radius-lg); margin-bottom: 10px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,.03); }
.faq-trigger { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px; text-align: left; cursor: pointer; font-weight: 600; font-size: .9rem; color: var(--slate-900); background: none; border: none; font-family: inherit; transition: color .15s; gap: 16px; }
.faq-trigger:hover { color: var(--green); }
.faq-icon { font-size: 1.4rem; color: var(--green); flex-shrink: 0; line-height: 1; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-body.open { max-height: 300px; }
.faq-body-inner { padding: 0 20px 20px; font-size: .875rem; color: var(--slate-600); line-height: 1.7; border-top: 1px solid var(--slate-100); padding-top: 14px; }

/* ─── CTA section ────────────────────────────────────────────────────────── */
.cta-section { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--green-dark), var(--green), var(--green-light)); padding: 80px 20px; text-align: center; }
.cta-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 28px 28px; }
.cta-section .emoji { font-size: 3.5rem; margin-bottom: 20px; display: block; position: relative; }
.cta-section h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; color: #fff; margin-bottom: 14px; line-height: 1.2; position: relative; }
.cta-section p { color: rgba(255,255,255,.8); font-size: 1rem; margin-bottom: 32px; max-width: 420px; margin-left: auto; margin-right: auto; position: relative; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-white { background: #fff; color: var(--green); padding: 14px 32px; border-radius: var(--radius-full); font-weight: 700; font-size: .95rem; box-shadow: 0 8px 24px rgba(0,0,0,.12); transition: transform .15s, box-shadow .15s; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.18); }
.btn-ghost { background: rgba(255,255,255,.15); backdrop-filter: blur(4px); color: #fff; border: 1.5px solid rgba(255,255,255,.4); padding: 14px 32px; border-radius: var(--radius-full); font-weight: 600; font-size: .95rem; transition: background .15s; }
.btn-ghost:hover { background: rgba(255,255,255,.25); }
.cta-note { color: rgba(255,255,255,.55); font-size: .75rem; margin-top: 16px; position: relative; }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer { background: var(--slate-900); padding: 48px 20px 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid #1e293b; margin-bottom: 24px; }
.footer-brand { color: #fff; font-weight: 800; font-size: 1.1rem; margin-bottom: 10px; }
.footer-desc { font-size: .82rem; color: var(--slate-400); line-height: 1.6; }
.footer-col-title { color: #fff; font-weight: 600; font-size: .82rem; margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: .82rem; color: var(--slate-400); transition: color .15s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: .75rem; color: var(--slate-400); flex-wrap: wrap; gap: 8px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ─── Animations (ya en animations.css, duplicar solo lo esencial) ───────── */
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
