:root {
  --bg: #fff8ed;
  --bg-soft: #fffdf7;
  --section: #f6ead9;
  --text: #2c2218;
  --muted: #756758;
  --accent: #f3a51d;
  --accent-dark: #9b5d00;
  --green: #146c43;
  --card: #ffffff;
  --line: rgba(44, 34, 24, .10);
  --shadow: 0 18px 45px rgba(60, 40, 18, .10);
  --radius: 24px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.topbar {
  background: #2e2116;
  color: #fff3dc;
  font-size: .92rem;
}
.topbar-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 26px;
  padding: 9px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 247, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  background: #f1dfbe;
  box-shadow: 0 8px 22px rgba(0,0,0,.10);
}
.brand span { display: grid; line-height: 1.1; }
.brand strong { font-size: 1.18rem; font-weight: 950; }
.brand small { color: var(--muted); font-weight: 700; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 800;
}
.nav-menu a:hover { color: var(--accent-dark); }
.nav-whatsapp, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 950;
  transition: transform .18s ease, box-shadow .18s ease;
}
.nav-whatsapp {
  background: #25d366;
  color: white;
  box-shadow: 0 12px 24px rgba(37,211,102,.20);
}
.btn:hover, .nav-whatsapp:hover { transform: translateY(-2px); }
.btn.primary {
  background: linear-gradient(135deg, var(--accent), #ffc866);
  color: #2c1d0a;
  box-shadow: 0 12px 28px rgba(243,165,29,.24);
}
.btn.secondary {
  background: white;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn.secondary-dark {
  background: #2e2116;
  color: white;
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: white;
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
}

.hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(243,165,29,.20), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(20,108,67,.09), transparent 22%),
    linear-gradient(180deg, #fffdf7 0%, #fff8ed 100%);
  padding: 70px 0 60px;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; line-height: 1.08; }
h1 {
  font-size: clamp(2.6rem, 7vw, 5.1rem);
  letter-spacing: -.065em;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -.045em;
}
h3 { font-size: 1.25rem; }
.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  margin: 24px 0 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.benefits span {
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--muted);
  font-weight: 800;
}
.hero-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: 28px;
}
.main-logo {
  width: min(330px, 100%);
  margin: 0 auto 22px;
  border-radius: 24px;
  box-shadow: 0 14px 32px rgba(60,40,18,.12);
}
.hero-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.hero-products img {
  width: 100%;
  height: 132px;
  object-fit: contain;
  background: #fff9ef;
  border-radius: 20px;
  padding: 12px;
  border: 1px solid var(--line);
}

.section { padding: 84px 0; }
.category-strip {
  padding: 28px 0;
  background: #2e2116;
  color: white;
}
.categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.categories article {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: 20px;
}
.categories strong { display: block; font-size: 1.12rem; }
.categories span { color: #efe0c8; font-size: .96rem; }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 38px;
}
.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}
.products-section {
  background: var(--section);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.product-img {
  background: #fffaf2;
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 14px;
  min-height: 216px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.product-img img {
  height: 184px;
  width: 100%;
  object-fit: contain;
}
.tag {
  align-self: flex-start;
  background: #fff0d1;
  color: var(--accent-dark);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .76rem;
  font-weight: 950;
  margin-bottom: 12px;
}
.product-card p {
  color: var(--muted);
  margin-bottom: 18px;
}
.product-card a {
  margin-top: auto;
  color: var(--green);
  font-weight: 950;
}

.brands-section {
  background: #fffdf7;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.brand-grid article {
  min-height: 165px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}
.brand-grid img {
  width: 100%;
  max-width: 270px;
  height: 92px;
  object-fit: contain;
}

.schedule-section {
  background:
    radial-gradient(circle at top left, rgba(243,165,29,.14), transparent 28%),
    #fff8ed;
}
.schedule-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.schedule-layout p {
  color: var(--muted);
  max-width: 520px;
}
.schedule-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 26px;
}
.schedule-card div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px dashed var(--line);
}
.schedule-card div:last-child { border-bottom: 0; }
.schedule-card span { color: var(--muted); font-weight: 800; }
.schedule-card strong { font-size: 1.08rem; }

.contact-section {
  background: #2e2116;
  color: white;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.contact-info p { color: #efe0c8; }
.contact-info .eyebrow { color: #ffc866; }
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.contact-card, .quick-form {
  background: #fffdf7;
  color: var(--text);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 18px 45px rgba(0,0,0,.16);
}
.contact-card {
  padding: 28px;
}
.contact-card a {
  color: var(--green);
  font-weight: 950;
}
.quick-form {
  margin-top: 28px;
  padding: 28px;
  display: grid;
  gap: 16px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.quick-form label {
  display: grid;
  gap: 7px;
  font-weight: 850;
}
.quick-form input, .quick-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  background: white;
}

.footer {
  background: #21170f;
  color: #efe0c8;
}
.footer-inner {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.footer strong { color: white; }
.footer p { margin: 6px 0 0; }
.footer a { color: #ffc866; font-weight: 950; }

@media (max-width: 980px) {
  .hero-layout,
  .schedule-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .product-grid,
  .brand-grid,
  .categories {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav-whatsapp { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-menu.open { display: flex; }
  .hero { padding-top: 44px; }
  .hero-products { grid-template-columns: 1fr; }
  .hero-products img { height: 150px; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .section { padding: 64px 0; }
  .product-grid,
  .brand-grid,
  .categories {
    grid-template-columns: 1fr;
  }
  .hero-actions .btn,
  .contact-buttons .btn {
    width: 100%;
  }
  .schedule-card div {
    flex-direction: column;
    gap: 3px;
  }
  .footer-inner { flex-direction: column; }
}
