* {
  box-sizing: border-box;
}

:root {
  --bg: #fff8ef;
  --surface: #ffffff;
  --surface-2: #fff0df;
  --text: #27150d;
  --muted: #74584a;
  --brand: #e94b22;
  --brand-dark: #b93416;
  --accent: #ffc247;
  --green: #1f9d55;
  --shadow: 0 18px 50px rgba(59, 24, 8, 0.14);
  --radius: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  min-height: 82vh;
  padding: 24px;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 194, 71, .55), transparent 26%),
    radial-gradient(circle at 85% 20%, rgba(233, 75, 34, .18), transparent 28%),
    linear-gradient(135deg, #fff8ef 0%, #ffe2bd 100%);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--text);
  color: #fff;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.brand small {
  display: block;
  color: var(--muted);
  margin-top: 2px;
}

.nav-whatsapp {
  background: var(--green);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(31, 157, 85, .18);
}

.hero-content {
  max-width: 1120px;
  margin: 90px auto 0;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .82rem;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  line-height: .92;
  letter-spacing: -0.07em;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.045em;
  margin-bottom: 14px;
}

.hero-text {
  max-width: 610px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 14px 30px rgba(233, 75, 34, .24);
}

.btn-outline {
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(39,21,13,.13);
}

.btn-light {
  background: white;
  color: var(--text);
}

.hero-card {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.65);
  backdrop-filter: blur(14px);
  border-radius: 34px;
  padding: 32px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.hero-card .tag {
  display: inline-block;
  background: var(--accent);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 18px;
}

.hero-card p {
  color: var(--muted);
  line-height: 1.6;
}

.hero-card strong {
  font-size: 2.6rem;
  letter-spacing: -0.06em;
}

.info-strip {
  max-width: 1120px;
  margin: -52px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
  z-index: 2;
}

.info-strip article {
  background: var(--surface);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.info-strip strong {
  display: block;
  font-size: 1.15rem;
}

.info-strip span {
  display: block;
  color: var(--muted);
  margin-top: 6px;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 82px 24px;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 26px;
}

.section-title p {
  color: var(--muted);
}

.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  border: 1px solid rgba(39,21,13,.12);
  background: #fff;
  padding: 11px 14px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.filter-btn.active {
  background: var(--text);
  color: white;
}

.search {
  min-width: min(360px, 100%);
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(39,21,13,.12);
  border-radius: 999px;
  padding: 8px 14px;
}

.search span {
  color: var(--muted);
  font-weight: 800;
  font-size: .9rem;
}

.search input {
  border: 0;
  outline: 0;
  width: 100%;
  background: transparent;
  font: inherit;
  padding: 8px 0;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.promo-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 28px rgba(59, 24, 8, 0.08);
  border: 1px solid rgba(39,21,13,.07);
  position: relative;
  overflow: hidden;
}

.promo-card::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -58px;
  top: -58px;
  background: var(--surface-2);
  border-radius: 50%;
}

.promo-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
  margin-bottom: 16px;
}

.promo-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  font-size: 1.65rem;
}

.badge {
  border-radius: 999px;
  padding: 7px 10px;
  background: #fff3c4;
  color: #7a4b00;
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-card h3 {
  position: relative;
  font-size: 1.24rem;
  line-height: 1.15;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.promo-card p {
  position: relative;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 18px;
}

.price-row {
  position: relative;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.price {
  font-size: 1.6rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.order-btn {
  background: var(--green);
  color: white;
  padding: 11px 14px;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
}

.empty-state {
  grid-column: 1 / -1;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  color: var(--muted);
  text-align: center;
}

.dark-section {
  max-width: none;
  background: var(--text);
  color: white;
  margin-top: 40px;
}

.order-box {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.order-box p {
  color: rgba(255,255,255,.74);
}

.order-box .eyebrow {
  color: var(--accent);
}

footer {
  padding: 34px 24px;
  text-align: center;
  color: var(--muted);
}

.footer-note {
  font-size: .92rem;
}

code {
  background: rgba(39,21,13,.08);
  padding: 2px 6px;
  border-radius: 8px;
}

@media (max-width: 880px) {
  .hero-content {
    grid-template-columns: 1fr;
    margin-top: 62px;
  }

  .hero-card {
    transform: none;
  }

  .info-strip,
  .promo-grid {
    grid-template-columns: 1fr;
  }

  .section-title,
  .toolbar,
  .order-box {
    align-items: stretch;
    flex-direction: column;
  }

  .nav {
    align-items: flex-start;
  }

  .nav-whatsapp {
    display: none;
  }
}

@media (max-width: 520px) {
  .hero {
    padding: 18px;
  }

  .section {
    padding-inline: 18px;
  }

  .hero-actions .btn,
  .btn-light {
    width: 100%;
  }

  .price-row {
    align-items: stretch;
    flex-direction: column;
  }

  .order-btn {
    text-align: center;
  }
}
