:root {
  --ink: #273067;
  --muted: #5f668f;
  --paper: #ffffff;
  --cream: #fffdf8;
  --line: #273067;
  --green: #c1f0ad;
  --yellow: #ecf0a8;
  --cyan: #b1f0ee;
  --lavender: #dac5ed;
  --pink: #f0bee1;
  --accent: #273067;
  --shadow: 0 18px 50px rgba(39, 48, 103, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(39, 48, 103, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(39, 48, 103, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 16px clamp(20px, 5vw, 76px);
  border-bottom: 2px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand-logo {
  width: 118px;
  height: auto;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 56px);
  font-weight: 850;
}

.main-nav a,
.site-footer nav a {
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.site-footer nav a:hover {
  border-color: currentColor;
}

.main-nav a.is-current,
.site-footer nav a.is-current {
  border-color: currentColor;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.instagram-label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.instagram-nav-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(39, 48, 103, 0.22);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(39, 48, 103, 0.08);
}

.instagram-nav-link:hover {
  border-color: #e4405f;
  background: #e4405f;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(228, 64, 95, 0.24);
}

.instagram-nav-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.instagram-nav-link svg rect,
.instagram-nav-link svg circle {
  fill: none;
}

.instagram-nav-link svg circle:last-child {
  fill: currentColor;
  stroke: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(39, 48, 103, 0.22);
  border-radius: 999px;
  background: var(--green);
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(39, 48, 103, 0.1);
}

.menu-button {
  display: none;
  width: 46px;
  height: 42px;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 6vw, 88px);
  padding: clamp(48px, 7vw, 92px) clamp(20px, 5vw, 76px);
  overflow: hidden;
  background: #000000;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-section::before {
  background: url("assets/fondo_hero.webp") center / cover no-repeat;
  opacity: 0.42;
}

.hero-section::after {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 690px;
}

.hero-copy h1,
.hero-copy .hero-lead,
.hero-copy .eyebrow {
  color: #ffffff;
}

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

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 7.2vw, 86px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4.8vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.1;
}

.hero-lead,
.section-heading p,
.process-copy p,
.shipping-band p,
.quote-benefits p,
.product-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.hero-lead {
  max-width: 580px;
  margin-bottom: 28px;
  font-size: clamp(19px, 2vw, 25px);
}

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

.hero-benefits {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px 24px;
  margin: -12px 0 24px;
  padding-left: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1.55vw, 19px);
  font-weight: 900;
  line-height: 1.4;
  list-style: none;
}

.hero-benefits li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
}

.hero-benefits span {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--green);
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid rgba(39, 48, 103, 0.22);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(39, 48, 103, 0.1);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(39, 48, 103, 0.14);
}

.button.primary {
  background: var(--green);
  color: var(--ink);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.92);
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: min(48vw, 520px);
}

.section {
  padding: clamp(54px, 7vw, 96px) clamp(20px, 5vw, 76px);
  border-top: 2px solid var(--line);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 24px;
}

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

.product-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  padding: 24px 22px;
  border: 1px solid rgba(39, 48, 103, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(var(--card-accent, var(--cyan)) 0 8px, transparent 8px),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(39, 48, 103, 0.08);
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(39, 48, 103, 0.34);
  box-shadow: 0 18px 42px rgba(39, 48, 103, 0.13);
}

.product-card:focus-visible {
  outline: 3px solid rgba(193, 240, 173, 0.95);
  outline-offset: 4px;
}

.product-card img {
  width: 82px;
  height: 82px;
  padding: 14px;
  border: 1px solid rgba(39, 48, 103, 0.16);
  border-radius: 50%;
  background: var(--card-accent, var(--cyan));
}

.product-card h3 {
  margin-top: auto;
}

.product-card p {
  margin-bottom: 0;
  font-size: 16px;
}

.card-stickers {
  --card-accent: var(--pink);
}

.card-buttons {
  --card-accent: var(--cyan);
}

.card-labels {
  --card-accent: var(--yellow);
}

.card-packs {
  --card-accent: var(--green);
}

.catalog-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.button.catalog-button {
  min-width: min(100%, 360px);
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(39, 48, 103, 0.18);
}

.process-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(28px, 6vw, 76px);
  background: var(--cream);
}

.process-copy {
  max-width: 560px;
}

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

.step-grid article {
  padding: 22px;
  border: 1px solid rgba(39, 48, 103, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(39, 48, 103, 0.08);
}

.step-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border: 1px solid rgba(39, 48, 103, 0.18);
  border-radius: 50%;
  background: var(--lavender);
  font-weight: 950;
}

.shipping-band {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 34px clamp(20px, 5vw, 76px);
  border-top: 2px solid var(--line);
  background: var(--ink);
  color: white;
}

.shipping-band img {
  width: 88px;
}

.shipping-band p {
  max-width: 820px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 24px;
}

.quote-form-wrap,
.quote-benefits {
  border: 1px solid rgba(39, 48, 103, 0.18);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.quote-form-wrap {
  padding: clamp(24px, 4vw, 42px);
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}

.quote-form label {
  display: grid;
  gap: 8px;
}

.quote-form span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(39, 48, 103, 0.2);
  border-radius: 999px;
  padding: 13px 14px;
  background: white;
  color: var(--ink);
}

.quote-form textarea {
  border-radius: 22px;
  resize: vertical;
}

.file-input {
  border-style: dashed;
}

.full-row {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--ink);
  font-weight: 850;
}

.quote-benefits {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: clamp(22px, 4vw, 34px);
}

.quote-benefits article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(24, 23, 22, 0.14);
}

.quote-benefits article:last-child {
  border-bottom: 0;
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(39, 48, 103, 0.18);
  border-radius: 50%;
  background: var(--pink);
  font-weight: 950;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 76px);
  border-top: 2px solid var(--line);
  background: var(--ink);
  color: white;
}

.site-footer .brand-logo {
  filter: brightness(0) invert(1);
}

.site-footer nav {
  justify-self: center;
  display: flex;
  gap: 24px;
  font-weight: 850;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 3vw, 30px);
  bottom: clamp(16px, 3vw, 30px);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 8px 18px 8px 10px;
  border: 1px solid rgba(39, 48, 103, 0.22);
  border-radius: 999px;
  background: var(--green);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(39, 48, 103, 0.22);
  font-weight: 950;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.whatsapp-float span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  background: var(--cyan);
  box-shadow: 0 22px 48px rgba(39, 48, 103, 0.28);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(193, 240, 173, 0.95);
  outline-offset: 4px;
}

.catalog-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.85fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
  padding: clamp(54px, 8vw, 104px) clamp(20px, 5vw, 76px);
  border-bottom: 2px solid var(--line);
  background: white;
}

.catalog-hero h1 {
  max-width: 850px;
  color: var(--ink);
}

.catalog-hero .hero-lead {
  max-width: 720px;
  color: var(--muted);
}

.catalog-hero-card {
  overflow: hidden;
  border: 1px solid rgba(39, 48, 103, 0.18);
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.catalog-hero-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.catalog-strip {
  position: sticky;
  top: 76px;
  z-index: 10;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px clamp(20px, 5vw, 76px);
  border-bottom: 1px solid rgba(39, 48, 103, 0.14);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
}

.catalog-strip a {
  flex: 0 0 auto;
  padding: 10px 16px;
  border: 1px solid rgba(39, 48, 103, 0.2);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-weight: 900;
}

.product-submenu {
  top: 78px;
  justify-content: center;
  border-top: 0;
}

.product-submenu a.is-active {
  border-color: rgba(39, 48, 103, 0.42);
  background: var(--ink);
  color: #ffffff;
}

.product-submenu .back-catalog-link {
  border-color: rgba(39, 48, 103, 0.3);
  background: var(--lavender);
  color: var(--ink);
}

.product-submenu .back-catalog-link:hover {
  border-color: rgba(39, 48, 103, 0.52);
  background: var(--pink);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.catalog-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  border: 1px solid rgba(39, 48, 103, 0.18);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px rgba(39, 48, 103, 0.08);
}

.catalog-card.featured {
  grid-column: 1 / -1;
}

.catalog-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.catalog-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(22px, 3vw, 34px);
}

.catalog-kicker {
  width: fit-content;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.catalog-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.catalog-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 8px;
  padding-left: 20px;
  color: var(--muted);
}

.catalog-card a {
  width: fit-content;
  margin-top: auto;
  padding: 10px 16px;
  border: 1px solid rgba(39, 48, 103, 0.2);
  border-radius: 999px;
  background: var(--green);
  color: var(--ink);
  font-weight: 950;
}

.catalog-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin: 0 clamp(20px, 5vw, 76px) clamp(54px, 7vw, 96px);
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(39, 48, 103, 0.18);
  border-radius: 34px;
  background: var(--lavender);
  box-shadow: var(--shadow);
}

.catalog-cta p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.sticker-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.85fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
  padding: clamp(54px, 8vw, 104px) clamp(20px, 5vw, 76px);
  border-bottom: 2px solid var(--line);
  background: linear-gradient(135deg, rgba(240, 190, 225, 0.34), rgba(177, 240, 238, 0.25) 48%, #ffffff);
}

.sticker-hero h1 {
  max-width: 880px;
  color: var(--ink);
}

.sticker-hero .hero-lead {
  max-width: 760px;
  color: var(--muted);
}

.sticker-hero-media {
  overflow: hidden;
  border: 1px solid rgba(39, 48, 103, 0.18);
  border-radius: 34px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.sticker-hero-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.sticker-section {
  background: var(--cream);
}

.chapita-hero {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(22px, 4vw, 52px);
  padding: clamp(26px, 4vw, 44px) 0 clamp(26px, 4vw, 44px) clamp(20px, 5vw, 76px);
  border-bottom: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.5) 42%, rgba(0, 0, 0, 0.12) 72%),
    url("assets/catalogo/chapitas/chapitas-hero.jpg") center / cover no-repeat;
}

.chapita-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(39, 48, 103, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(39, 48, 103, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
}

.chapita-hero .sticker-hero-copy {
  position: relative;
  z-index: 1;
}

.chapita-hero h1 {
  max-width: 660px;
  margin-bottom: 14px;
  font-size: clamp(48px, 5.6vw, 76px);
  color: #ffffff;
}

.chapita-hero .hero-lead {
  max-width: 600px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 1.8vw, 22px);
}

.chapita-hero .hero-actions {
  margin-bottom: 0;
  justify-content: center;
  max-width: 660px;
  padding-top: 8px;
}

.chapita-hero-tool {
  position: relative;
  z-index: 1;
  justify-self: start;
  align-self: center;
  width: min(100%, 480px);
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    0 28px 26px rgba(0, 0, 0, 0.32),
    0 10px 14px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.chapita-hero-tool h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1;
}

.chapita-hero-tool p {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.chapita-hero-tool .button {
  width: fit-content;
}

.sticker-catalog-hero {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(22px, 4vw, 52px);
  padding: clamp(26px, 4vw, 44px) 0 clamp(26px, 4vw, 44px) clamp(20px, 5vw, 76px);
  border-bottom: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.5) 42%, rgba(0, 0, 0, 0.12) 72%),
    url("assets/catalogo/stickers/stickers-set-kisscut.jpg") center / cover no-repeat;
}

.sticker-catalog-hero::before,
.paper-catalog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(39, 48, 103, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(39, 48, 103, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
}

.sticker-catalog-hero .sticker-hero-copy,
.paper-catalog-hero .sticker-hero-copy {
  position: relative;
  z-index: 1;
}

.sticker-catalog-hero h1 {
  max-width: 660px;
  margin-bottom: 14px;
  font-size: clamp(48px, 5.6vw, 76px);
  color: #ffffff;
}

.sticker-catalog-hero .hero-lead,
.paper-catalog-hero .hero-lead {
  max-width: 600px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 1.8vw, 22px);
}

.sticker-catalog-hero .hero-actions {
  margin-bottom: 0;
  justify-content: center;
  max-width: 660px;
  padding-top: 8px;
}

.sticker-catalog-hero .sticker-hero-media {
  display: none;
}

.paper-catalog-hero {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(22px, 4vw, 52px);
  padding: clamp(26px, 4vw, 44px) 0 clamp(26px, 4vw, 44px) clamp(20px, 5vw, 76px);
  border-bottom: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.5) 42%, rgba(0, 0, 0, 0.12) 72%),
    url("assets/catalogo/papeleria.jpg") center / cover no-repeat;
}

.paper-catalog-hero h1 {
  max-width: 660px;
  margin-bottom: 14px;
  font-size: clamp(48px, 5.6vw, 76px);
  color: #ffffff;
}

.paper-catalog-hero .hero-actions {
  margin-bottom: 0;
  justify-content: center;
  max-width: 660px;
  padding-top: 8px;
}

.paper-catalog-hero .sticker-hero-media {
  display: none;
}

.adhesive-hero {
  background: linear-gradient(135deg, rgba(177, 240, 238, 0.38), rgba(193, 240, 173, 0.28) 48%, #ffffff);
}

.special-hero {
  background: linear-gradient(135deg, rgba(218, 197, 237, 0.38), rgba(236, 240, 168, 0.32) 48%, #ffffff);
}

.paper-catalog-hero.special-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.5) 42%, rgba(0, 0, 0, 0.12) 72%),
    url("assets/catalogo/papeleria.jpg") center / cover no-repeat;
}

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

.sticker-product-card {
  overflow: hidden;
  display: grid;
  border: 1px solid rgba(39, 48, 103, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(39, 48, 103, 0.08);
}

.sticker-product-card.featured {
  grid-column: span 2;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
}

.sticker-product-card.wide-card {
  grid-column: span 2;
}

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

.sticker-product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.sticker-product-card.featured img {
  height: 100%;
  min-height: 390px;
}

.sticker-product-card > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(20px, 3vw, 30px);
}

.sticker-product-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.price-list {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.5;
}

.price-list strong {
  color: var(--ink);
}

.compact-list {
  gap: 6px;
  font-size: 15px;
}

.two-column-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
}

.price-pill,
.inline-link {
  width: fit-content;
  margin-top: auto;
  padding: 10px 15px;
  border: 1px solid rgba(39, 48, 103, 0.2);
  border-radius: 999px;
  background: var(--green);
  color: var(--ink);
  font-weight: 950;
}

.inline-link {
  display: inline-flex;
  align-items: center;
}

.quote-card {
  align-content: center;
  background: linear-gradient(135deg, rgba(218, 197, 237, 0.72), rgba(255, 255, 255, 0.96));
}

.sticker-table-section {
  background: #ffffff;
}

.sticker-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(39, 48, 103, 0.18);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(39, 48, 103, 0.08);
}

.sticker-price-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  table-layout: fixed;
  color: var(--ink);
}

.sticker-price-table th,
.sticker-price-table td {
  padding: 15px 16px;
  border-bottom: 1px solid rgba(39, 48, 103, 0.14);
  text-align: left;
  white-space: nowrap;
}

.sticker-price-table thead th {
  background: var(--yellow);
  font-size: 13px;
  line-height: 1.2;
  text-transform: uppercase;
}

.sticker-price-table thead th span {
  display: block;
}

.sticker-price-table thead th,
.sticker-price-table tbody td {
  text-align: center;
}

.sticker-price-table thead th:first-child,
.sticker-price-table tbody th {
  width: 16%;
  text-align: left;
}

.sticker-price-table tbody th {
  background: rgba(177, 240, 238, 0.26);
  font-weight: 950;
}

.sticker-price-table tbody tr:nth-child(even) td {
  background: rgba(240, 190, 225, 0.13);
}

.sticker-price-table tbody tr:last-child th,
.sticker-price-table tbody tr:last-child td {
  border-bottom: 0;
}

.policy-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 108px) clamp(20px, 5vw, 76px) clamp(36px, 5vw, 68px);
  border-bottom: 1px solid rgba(39, 48, 103, 0.16);
  background: #000000;
}

.policy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("assets/hero_condiciones.webp") center / cover no-repeat;
  opacity: 0.42;
}

.policy-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(44px, 7vw, 88px);
}

.policy-hero p:last-child {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

.policy-hero .eyebrow {
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.policy-layout {
  display: block;
  padding: clamp(36px, 6vw, 76px);
}

.policy-list {
  display: grid;
  gap: 18px;
  max-width: 1120px;
  margin-inline: auto;
}

.policy-card {
  position: relative;
  display: grid;
  gap: 10px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(39, 48, 103, 0.16);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(39, 48, 103, 0.06);
}

.policy-card:nth-child(3n + 1) {
  background: linear-gradient(90deg, rgba(240, 190, 225, 0.28), rgba(255, 255, 255, 0.96));
}

.policy-card:nth-child(3n + 2) {
  background: linear-gradient(90deg, rgba(177, 240, 238, 0.28), rgba(255, 255, 255, 0.96));
}

.policy-card:nth-child(3n) {
  background: linear-gradient(90deg, rgba(236, 240, 168, 0.34), rgba(255, 255, 255, 0.96));
}

.policy-card > span {
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(39, 48, 103, 0.18);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

.policy-card h2 {
  margin-bottom: 4px;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--ink);
}

.policy-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.policy-card a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.policy-card strong {
  color: var(--ink);
}

.policy-confirmation {
  border-color: rgba(39, 48, 103, 0.28);
  background: var(--lavender);
}

@media (max-width: 980px) {
  .hero-section,
  .process-section,
  .quote-section,
  .catalog-hero,
  .catalog-card,
  .sticker-hero,
  .sticker-product-card.featured,
  .catalog-cta,
  .policy-layout {
    grid-template-columns: 1fr;
  }


  .product-grid,
  .step-grid,
  .catalog-grid,
  .sticker-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sticker-product-card.featured {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    padding-top: 14px;
    border-top: 2px solid rgba(24, 23, 22, 0.12);
  }

  .main-nav.is-open {
    display: grid;
    gap: 14px;
  }

  .header-actions {
    grid-column: 1 / -1;
    display: inline-flex;
    justify-self: start;
    gap: 8px;
    margin-top: -4px;
  }

  .instagram-label {
    font-size: 12px;
  }

  .instagram-nav-link {
    width: 32px;
    height: 32px;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(39, 48, 103, 0.08);
  }

  .instagram-nav-link svg {
    width: 16px;
    height: 16px;
  }

  .header-cta {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding-top: 42px;
  }

  .chapita-hero {
    padding-right: clamp(20px, 5vw, 76px);
  }

  .sticker-catalog-hero {
    padding-right: clamp(20px, 5vw, 76px);
  }

  .paper-catalog-hero {
    padding-right: clamp(20px, 5vw, 76px);
  }

  .paper-catalog-hero .sticker-hero-copy,
  .paper-catalog-hero h1,
  .sticker-catalog-hero .sticker-hero-copy,
  .sticker-catalog-hero h1,
  .chapita-hero .sticker-hero-copy,
  .chapita-hero h1 {
    text-align: center;
  }

  .paper-catalog-hero .hero-actions,
  .sticker-catalog-hero .hero-actions,
  .chapita-hero .hero-actions {
    justify-content: center;
    margin-inline: auto;
  }

  .chapita-hero-tool {
    justify-self: center;
    text-align: center;
  }

  .chapita-hero-tool .catalog-kicker,
  .chapita-hero-tool .button {
    justify-self: center;
  }

  .hero-benefits {
    flex-wrap: nowrap;
    gap: 10px 14px;
    font-size: clamp(14px, 4vw, 16px);
  }

  .hero-benefits li {
    gap: 7px;
  }

  .hero-benefits span {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }

  .product-grid,
  .step-grid,
  .catalog-grid,
  .sticker-product-grid,
  .quote-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .sticker-product-card.featured {
    grid-column: auto;
  }

  .sticker-product-card.wide-card {
    grid-column: auto;
  }

  .two-column-list {
    grid-template-columns: 1fr;
  }

  .sticker-product-card.featured img {
    min-height: 260px;
  }

  .catalog-strip {
    top: 75px;
  }

  .catalog-card,
  .catalog-card.featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .catalog-card img {
    min-height: 240px;
  }

  .catalog-cta {
    margin-inline: 20px;
  }

  .product-card {
    min-height: 240px;
  }

  .shipping-band {
    grid-template-columns: 64px 1fr;
  }

  .shipping-band img {
    width: 60px;
  }

  .site-footer nav {
    justify-self: start;
    flex-wrap: wrap;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 6px;
  }

  .whatsapp-float strong {
    position: absolute;
    inline-size: 1px;
    block-size: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .whatsapp-float span {
    width: 38px;
    height: 38px;
  }
}
