:root {
  color-scheme: light;
  --cream: #fff5e5;
  --cream-2: #f7e5c9;
  --paper: #fffaf0;
  --ink: #1d1612;
  --muted: #6f5b4d;
  --chili: #8d1f12;
  --chili-dark: #4b120b;
  --tomato: #c63a20;
  --ember: #f26b2f;
  --gold: #d79a35;
  --sage: #667653;
  --earth: #3a241b;
  --line: rgba(75, 18, 11, 0.16);
  --line-strong: rgba(75, 18, 11, 0.26);
  --shadow: 0 24px 70px rgba(53, 19, 8, 0.18);
  --shadow-soft: 0 16px 42px rgba(53, 19, 8, 0.1);
  --radius: 8px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --header-height: 72px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(135deg, rgba(141, 31, 18, 0.08) 0 1px, transparent 1px 16px),
    linear-gradient(180deg, #fff7ea 0%, var(--paper) 42%, #faead7 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(215, 154, 53, 0.85);
  outline-offset: 4px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  translate: 0 -160%;
  border-radius: 6px;
  background: var(--paper);
  color: var(--chili-dark);
  font-weight: 800;
  padding: 10px 14px;
  box-shadow: var(--shadow);
  transition: translate 160ms ease;
}

.skip-link:focus {
  translate: 0 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  min-height: var(--header-height);
  background: rgba(255, 245, 229, 0.96);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
  backdrop-filter: blur(22px) saturate(1.35);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.42);
}

main {
  padding-top: var(--header-height);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: var(--header-height);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 44px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 76% 20%, rgba(215, 154, 53, 0.55), transparent 0.42rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 45%),
    var(--chili-dark);
  color: var(--cream);
  box-shadow:
    inset 0 1px 0 rgba(255, 245, 229, 0.18),
    0 12px 30px rgba(75, 18, 11, 0.24);
}

.brand-mark svg {
  width: 39px;
  height: 39px;
  overflow: visible;
}

.brand-pepper {
  fill: rgba(242, 107, 47, 0.18);
  stroke: #fff5e5;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-pepper-line {
  fill: none;
  stroke: rgba(255, 245, 229, 0.58);
  stroke-width: 2.1;
  stroke-linecap: round;
}

.brand-stem {
  fill: none;
  stroke: var(--gold);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark text {
  fill: #fff5e5;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-name {
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
}

.btn-small::after {
  display: none;
}

.menu-toggle {
  justify-self: end;
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.85);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle-icon {
  position: relative;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle-icon::before {
  transform: translateY(-6px);
}

.menu-toggle-icon::after {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
  transform: rotate(90deg);
}

.site-nav {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  display: grid;
  gap: 4px;
  padding: 14px 16px 18px;
  background: rgba(255, 245, 229, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 54px rgba(53, 19, 8, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  visibility: hidden;
  transition:
    opacity 180ms var(--ease),
    transform 180ms var(--ease),
    visibility 0s linear 180ms;
}

body.nav-open .site-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  transition:
    opacity 180ms var(--ease),
    transform 180ms var(--ease),
    visibility 0s;
}

.site-nav a {
  border-radius: var(--radius);
  color: var(--earth);
  font-size: 0.95rem;
  font-weight: 760;
  padding: 11px 12px;
  transition: background 170ms var(--ease), color 170ms var(--ease);
}

.site-nav a:hover {
  background: rgba(198, 58, 32, 0.08);
  color: var(--chili);
}

.header-cta {
  display: inline-flex;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1;
  padding: 0.95rem 1.2rem;
  text-align: center;
  gap: 10px;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}

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

.btn::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms var(--ease);
}

.btn:hover::after {
  transform: translateX(3px) rotate(45deg);
}

.btn-primary,
.btn-small {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, var(--ember) 0%, var(--tomato) 42%, var(--chili) 100%);
  color: #fff9ed;
  box-shadow: 0 16px 32px rgba(141, 31, 18, 0.34);
}

.btn-primary:hover,
.btn-small:hover {
  box-shadow: 0 20px 40px rgba(141, 31, 18, 0.42);
}

.btn-small {
  min-height: 42px;
  padding: 0.78rem 1rem;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  min-height: min(760px, calc(100svh - var(--header-height) - 96px));
  padding: clamp(54px, 8vw, 104px) 0 clamp(34px, 6vw, 70px);
  overflow: hidden;
  background:
    var(--chili-dark)
    url("assets/chili-cor-carne-hero.jpg")
    54% 76% / cover
    no-repeat;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  display: block;
  z-index: 0;
  overflow: hidden;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 76%;
  filter: saturate(1.06) contrast(1.02);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(28, 9, 5, 0.78) 0%, rgba(55, 17, 8, 0.42) 42%, rgba(55, 17, 8, 0.04) 76%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.02) 38%, rgba(29, 10, 4, 0.42) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--paper);
}

.kicker,
.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 10ch;
  margin-bottom: 0.9rem;
  font-size: clamp(3.45rem, 14vw, 8.4rem);
  font-weight: 950;
}

.hero-subtitle {
  max-width: 720px;
  margin-bottom: 1rem;
  color: #fff4d8;
  font-size: clamp(1.35rem, 4vw, 2.3rem);
  font-weight: 850;
  line-height: 1.1;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 1.5rem;
  color: rgba(255, 250, 240, 0.88);
  font-size: clamp(1rem, 2vw, 1.18rem);
  text-wrap: pretty;
}

.hero-actions {
  display: grid;
  align-items: center;
  gap: 12px;
  max-width: 560px;
  margin-bottom: 1.25rem;
}

.partner-note {
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.92rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 720px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-badges li {
  border: 1px solid rgba(255, 245, 229, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 245, 229, 0.12);
  color: rgba(255, 250, 240, 0.92);
  font-size: 0.85rem;
  font-weight: 780;
  padding: 8px 10px;
  backdrop-filter: blur(12px);
}

.delivery-strip {
  position: relative;
  z-index: 3;
  background: #1b130f;
  color: var(--paper);
}

.delivery-strip-inner {
  display: grid;
  gap: 1px;
  background: rgba(255, 245, 229, 0.12);
}

.delivery-strip-inner div {
  display: grid;
  gap: 2px;
  background: #1b130f;
  padding: 18px 0;
}

.delivery-strip span {
  color: rgba(255, 250, 240, 0.55);
  font-size: 0.76rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.delivery-strip strong {
  color: var(--paper);
  font-size: 0.98rem;
  line-height: 1.25;
}

.section {
  padding: clamp(70px, 10vw, 118px) 0;
}

.problem-section {
  background: var(--paper);
  padding-top: clamp(38px, 7vw, 86px);
}

.problem-grid,
.faq-grid,
.story-grid {
  display: grid;
  gap: 34px;
}

.section-copy,
.section-heading {
  max-width: 690px;
}

.section-heading {
  margin-bottom: 28px;
}

h2 {
  margin-bottom: 1rem;
  color: var(--chili-dark);
  font-size: clamp(2.2rem, 8vw, 4.9rem);
  font-weight: 930;
}

h3 {
  margin-bottom: 0.65rem;
  color: var(--chili-dark);
  font-size: 1.25rem;
  font-weight: 890;
}

.section-copy p,
.section-heading p,
.story-copy p,
.order-panel p,
.faq-section p,
.site-footer p {
  color: var(--muted);
  font-size: 1.02rem;
}

.comparison {
  display: grid;
  gap: 10px;
}

.comparison-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 245, 229, 0.66);
  padding: 14px;
}

.comparison-item span {
  width: 12px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--line);
}

.comparison-item p {
  margin: 0;
  color: var(--earth);
  font-weight: 850;
}

.comparison-item.featured {
  background: var(--chili-dark);
  box-shadow: var(--shadow);
}

.comparison-item.featured span {
  background: var(--gold);
}

.comparison-item.featured p {
  color: var(--paper);
}

.why-section {
  background:
    linear-gradient(180deg, rgba(255, 245, 229, 0.45), rgba(255, 250, 240, 0.95)),
    var(--cream);
}

.feature-grid {
  display: grid;
  gap: 14px;
}

.feature-card {
  min-height: 235px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.86);
  padding: 22px;
  box-shadow: 0 12px 30px rgba(53, 19, 8, 0.08);
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  margin-bottom: 22px;
  border-radius: 8px;
  background: rgba(141, 31, 18, 0.1);
  color: var(--chili);
}

.feature-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.story-section {
  padding: clamp(70px, 10vw, 118px) 0;
  background: var(--chili-dark);
  color: var(--paper);
}

.story-media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(75, 18, 11, 0.35));
  pointer-events: none;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy h2,
.story-copy h3 {
  color: var(--paper);
}

.story-copy p {
  color: rgba(255, 250, 240, 0.78);
}

.creator-card {
  margin-top: 28px;
  border: 1px solid rgba(255, 245, 229, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 245, 229, 0.13), rgba(242, 107, 47, 0.08)),
    rgba(255, 245, 229, 0.06);
  padding: clamp(20px, 4vw, 28px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
}

.creator-label {
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.creator-card h3 {
  margin-bottom: 0.8rem;
  color: var(--paper);
  font-size: clamp(1.55rem, 5vw, 2.1rem);
}

.creator-card p:last-child {
  margin-bottom: 0;
}

.order-section {
  background:
    linear-gradient(135deg, rgba(141, 31, 18, 0.08), rgba(215, 154, 53, 0.12)),
    var(--paper);
}

.order-panel {
  display: grid;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(141, 31, 18, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.92), rgba(255, 245, 229, 0.72)),
    var(--paper);
  padding: clamp(24px, 5vw, 54px);
  box-shadow: var(--shadow);
}

.order-panel h2 {
  max-width: 720px;
}

.order-panel p {
  max-width: 640px;
  margin-bottom: 0;
}

.order-panel .btn {
  width: 100%;
}

.image-band {
  padding: 22px 0;
  background: var(--chili-dark);
}

.image-band-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.image-band-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.faq-section {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  overflow: clip;
}

summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 18px 48px 18px 18px;
  color: var(--chili-dark);
  cursor: pointer;
  font-weight: 890;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "";
  position: absolute;
  right: 18px;
  width: 12px;
  aspect-ratio: 1;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

details[open] summary::after {
  transform: rotate(225deg) translateY(-2px);
}

details p {
  margin: 0;
  padding: 0 18px 18px;
}

.site-footer {
  padding: 42px 0 92px;
  background: #1b130f;
  color: var(--paper);
}

.footer-grid {
  display: grid;
  gap: 22px;
}

.footer-brand {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.site-footer p {
  max-width: 560px;
  margin-bottom: 0.55rem;
  color: rgba(255, 250, 240, 0.7);
}

.footer-disclaimer {
  font-size: 0.9rem;
}

.footer-credit {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 250, 240, 0.12);
  font-size: 0.86rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 379px) {
  .header-cta {
    display: none;
  }
}

@media (min-width: 560px) {
  .hero-actions {
    grid-template-columns: max-content 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-band-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 760px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 22px;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
    transition: none;
  }

  .site-nav a {
    padding: 9px 10px;
  }

  .header-cta {
    display: inline-flex;
  }

  .hero {
    min-height: min(760px, calc(100svh - var(--header-height) - 150px));
    background-position: 58% 78%;
  }

  .hero-media img {
    object-position: 58% 78%;
  }

  .comparison {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .comparison-item {
    align-content: start;
    align-items: flex-start;
    flex-direction: column;
    min-height: 132px;
  }

  .problem-grid,
  .faq-grid {
    grid-template-columns: 0.75fr 1.25fr;
    align-items: start;
  }

  .story-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    align-items: center;
  }

  .order-panel {
    grid-template-columns: 1fr max-content;
  }

  .order-panel .btn {
    width: auto;
    min-width: 210px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-credit {
    grid-column: 1 / -1;
  }

}

@media (min-width: 980px) {
  .container {
    width: min(100% - 48px, var(--container));
  }

  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .feature-card {
    padding: 24px;
  }
}
