:root {
  --cocoa: #3a2117;
  --cocoa-soft: #5a3728;
  --cream: #fff8ec;
  --paper: #fffdf8;
  --rose: #c96b56;
  --mint: #5f8c72;
  --gold: #d9a441;
  --ink: #251915;
  --muted: #6d5a52;
  --line: #eadfcf;
  --shadow: 0 18px 55px rgba(58, 33, 23, 0.16);
  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(--paper);
  color: var(--ink);
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(234, 223, 207, 0.9);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  background: #fff;
  border-radius: 50%;
  border: 1px solid rgba(58, 33, 23, 0.12);
  height: 54px;
  object-fit: cover;
  object-position: center;
  width: 54px;
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 15px;
  color: var(--muted);
}

.nav a,
.header-action {
  text-decoration: none;
}

.header-action {
  background: var(--cocoa);
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  padding: 10px 18px;
}

.hero {
  display: grid;
  min-height: calc(100vh - 68px);
  position: relative;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(37, 25, 21, 0.88), rgba(37, 25, 21, 0.56) 43%, rgba(37, 25, 21, 0.14) 72%),
    url("assets/images/torta-oreo-chocolate-hero-optimizada.jpeg") center/cover;
  inset: 0;
  position: absolute;
}

.hero-content {
  align-self: center;
  color: #fff;
  max-width: 640px;
  padding: clamp(64px, 9vw, 120px) clamp(22px, 7vw, 96px);
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--rose);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f4c278;
}

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

h1 {
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 0.98;
  margin-bottom: 22px;
  max-width: 560px;
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
  max-width: 560px;
}

.hero-actions,
.dark .button {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  text-decoration: none;
}

.button.primary {
  background: var(--rose);
  color: #fff;
}

.button.secondary {
  background: #fff;
  color: var(--cocoa);
}

.button.light {
  background: #fff;
  color: var(--cocoa);
}

.quick-links {
  background: var(--cream);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.quick-links a {
  border-right: 1px solid var(--line);
  display: grid;
  gap: 8px;
  min-height: 120px;
  padding: 26px;
  text-decoration: none;
}

.quick-links a:hover {
  background: #fff2df;
}

.quick-links span {
  color: var(--rose);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-links strong {
  font-size: 18px;
  line-height: 1.25;
}

.section,
.split-section,
.contact {
  padding: clamp(58px, 8vw, 108px) clamp(20px, 5vw, 76px);
}

.section-heading {
  margin: 0 auto 34px;
  max-width: 850px;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.product-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card div {
  padding: 24px;
}

.product-card p {
  color: var(--muted);
  line-height: 1.55;
}

.product-card a {
  color: var(--rose);
  font-weight: 800;
  text-decoration: none;
}

.tag {
  color: var(--mint) !important;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.split-section {
  align-items: center;
  background: #f3f7f0;
  display: grid;
  gap: clamp(32px, 6vw, 78px);
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
}

.split-section > *,
.contact > *,
.quote-form,
label {
  min-width: 0;
}

.split-section p,
.check-list {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.split-section img {
  aspect-ratio: 5 / 4;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.special-image {
  margin: 0;
  position: relative;
}

.special-image img {
  height: 100%;
}

.visual-label {
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(217, 164, 65, 0.58);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(58, 33, 23, 0.14);
  color: var(--cocoa);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  padding: 10px 14px;
  position: absolute;
  text-transform: uppercase;
}

.visual-label-sugar {
  left: 8%;
  top: 12%;
}

.visual-label-gluten {
  right: 8%;
  top: 12%;
}

.visual-label-lactose {
  bottom: 12%;
  right: 8%;
}

.check-list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}

.check-list li {
  border-top: 1px solid rgba(95, 140, 114, 0.24);
  padding: 12px 0;
}

.dark {
  background: var(--cocoa);
  color: #fff;
}

.dark .section-heading p,
.dark .eyebrow {
  color: #f4c278;
}

.business-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 28px;
}

.business-grid article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 26px;
}

.business-grid p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.zones {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.zones span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(58, 33, 23, 0.08);
  font-weight: 800;
  padding: 12px 18px;
}

.contact {
  background: var(--cream);
  display: grid;
  gap: clamp(30px, 6vw, 76px);
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
}

.contact-list div {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.contact-list dt {
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list dd {
  font-size: 20px;
  margin: 6px 0 0;
}

.quote-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

label {
  color: var(--muted);
  display: grid;
  font-weight: 800;
  gap: 8px;
}

select,
textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  max-width: 100%;
  min-width: 0;
  padding: 13px 14px;
  resize: vertical;
  width: 100%;
}

select:focus,
textarea:focus {
  border-color: var(--rose);
  outline: 3px solid rgba(201, 107, 86, 0.2);
}

.footer {
  background: #241611;
  color: rgba(255, 255, 255, 0.72);
  padding: 26px;
  text-align: center;
}

.footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    overflow-x: auto;
    width: 100%;
  }

  .hero {
    min-height: 720px;
  }

  .quick-links,
  .product-grid,
  .business-grid,
  .split-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .quick-links a {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 16px;
  }

  .site-header .nav {
    gap: 17px;
  }

  .brand-logo {
    height: 48px;
    width: 48px;
  }

  .header-action {
    padding: 9px 14px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(37, 25, 21, 0.88), rgba(37, 25, 21, 0.52)),
      url("assets/images/torta-oreo-chocolate-hero-optimizada.jpeg") center/cover;
  }

  .hero-content {
    padding: 52px 20px;
  }

  .button {
    width: 100%;
  }
}
