:root {
  --orange: #ff7a00;
  --yellow: #ffca28;
  --dark: #1f2937;
  --text: #2d2d2d;
  --muted: #6b7280;
  --light: #fff8eb;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(31, 41, 55, 0.15);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', Arial, sans-serif; color: var(--text); background: #fffaf2; }
a { color: inherit; text-decoration: none; }
.site-header { position: sticky; top: 0; z-index: 10; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 7%; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.1rem; }
.brand img { width: 44px; height: 44px; }
.nav { display: flex; gap: 24px; color: var(--muted); font-weight: 600; }
.nav a:hover { color: var(--orange); }
.whatsapp-top { background: var(--dark); color: white; padding: 10px 18px; border-radius: 999px; font-weight: 700; }
.hero { display: grid; grid-template-columns: 1.25fr .75fr; gap: 48px; align-items: center; min-height: 78vh; padding: 70px 7%; background: radial-gradient(circle at top left, #ffe7a3, transparent 34%), linear-gradient(135deg, #fff8eb 0%, #ffffff 55%, #fff0d4 100%); }
.tag { display: inline-flex; align-items: center; width: fit-content; margin-bottom: 18px; padding: 10px 18px; border-radius: 999px; background: var(--dark); color: white; letter-spacing: .08em; font-weight: 800; font-size: .82rem; }
.tag.dark { background: rgba(31,41,55,.12); color: var(--dark); }
h1 { font-size: clamp(2.3rem, 5vw, 4.8rem); line-height: 1.02; letter-spacing: -0.05em; max-width: 900px; }
.subtitle { max-width: 680px; margin-top: 22px; color: var(--muted); font-size: 1.13rem; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.btn { display: inline-flex; justify-content: center; align-items: center; min-height: 48px; padding: 0 24px; border-radius: 14px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn.primary { background: linear-gradient(135deg, var(--orange), var(--yellow)); color: #1f2937; }
.btn.secondary { border: 2px solid #ffd27d; background: white; }
.hero-card { padding: 34px; border-radius: 32px; background: white; text-align: center; box-shadow: var(--shadow); border: 1px solid #ffe0a3; }
.hero-card img { width: 180px; max-width: 70%; margin-bottom: 22px; }
.hero-card h2 { font-size: 1.8rem; margin-bottom: 10px; }
.hero-card p { color: var(--muted); }
.section { padding: 76px 7%; }
.section.soft { background: var(--light); }
.section-title { text-align: center; max-width: 680px; margin: 0 auto 38px; }
.section-title p { color: var(--orange); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.section-title h2 { margin-top: 8px; font-size: clamp(2rem, 4vw, 3.3rem); letter-spacing: -0.04em; }
.grid { display: grid; gap: 20px; }
.categories { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.category, .product { background: white; padding: 26px; border-radius: 24px; border: 1px solid #ffe0a3; box-shadow: 0 10px 25px rgba(31,41,55,.06); }
.category span { font-size: 2.2rem; display: block; margin-bottom: 14px; }
.category h3, .product h3 { font-size: 1.18rem; margin-bottom: 8px; }
.category p, .product p, .contact p { color: var(--muted); line-height: 1.6; }
.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-img { height: 180px; border-radius: 20px; margin-bottom: 18px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #ffe7a3, #ffb15a); font-weight: 900; color: #723400; }
.contact { margin: 76px 7%; padding: 42px; border-radius: 30px; background: var(--dark); color: white; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.contact h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 12px; }
.contact p { color: #d1d5db; max-width: 650px; }
footer { display: flex; justify-content: space-between; gap: 18px; padding: 28px 7%; background: #111827; color: #d1d5db; font-size: .95rem; }
@media (max-width: 900px) { .hero { grid-template-columns: 1fr; } .categories { grid-template-columns: repeat(2, 1fr); } .products { grid-template-columns: 1fr; } .nav { display: none; } .contact, footer { flex-direction: column; align-items: flex-start; } }
@media (max-width: 520px) { .site-header { padding: 14px 18px; } .brand span { display: none; } .hero, .section { padding-left: 22px; padding-right: 22px; } .categories { grid-template-columns: 1fr; } .contact { margin-left: 22px; margin-right: 22px; padding: 28px; } }
