:root {
  --green: #16a34a;
  --green-2: #22c55e;
  --text: #0f172a;
  --muted: #64748b;
  --bg: #ffffff;
  --card: #f8fafc;
  --border: #e2e8f0;
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
  --radius: 18px;
  --max: 1200px;
  --pad: clamp(16px, 3vw, 28px);

  --ml-yellow: #facc15;
  --ml-yellow-border: #eab308;

  --neon-green: rgba(34, 197, 94, 0.75);
  --neon-yellow: rgba(250, 204, 21, 0.75);
  --neon-white: rgba(255, 255, 255, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

:root {
  scroll-padding-top: 74px;
}

[id] {
  scroll-margin-top: 74px;
}

/* ====== Layout (Flex) ====== */
.page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  padding-top: 74px;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ====== Header ====== */
.header {
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 74px;
  position: relative;
}

/* ====== Brand ====== */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  text-decoration: none;
  color: inherit;
}

.brand__logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-weight: 900;
  letter-spacing: 0.4px;
}

.brand__tag {
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}

/* ====== Nav desktop ====== */
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 1;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 12px;
}

.nav a:hover {
  background: #f1f5f9;
}

/* ====== Actions ====== */
.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 260px;
}

/* ====== Buttons ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease,
    background 0.18s ease, border-color 0.18s ease;
  will-change: transform, box-shadow, filter;
}

.btn:active {
  transform: translateY(1px) scale(0.99);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.06), 0 10px 24px rgba(2, 6, 23, 0.1);
}

.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn--wa {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #fff;
  border: 1px solid rgba(34, 197, 94, 0.35);
  box-shadow: 0 10px 26px rgba(34, 197, 94, 0.24),
    0 0 22px rgba(34, 197, 94, 0.35);
}

.btn--wa:hover {
  filter: brightness(1.02);
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.28),
    0 0 26px rgba(34, 197, 94, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.btn--ml-yellow {
  background: var(--ml-yellow);
  border: 1px solid var(--ml-yellow-border);
  color: #111827;
  box-shadow: 0 10px 26px rgba(234, 179, 8, 0.2),
    0 0 22px rgba(250, 204, 21, 0.4);
}

.btn--ml-yellow:hover {
  filter: brightness(1.02);
  box-shadow: 0 12px 30px rgba(234, 179, 8, 0.24),
    0 0 26px rgba(250, 204, 21, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.14) inset;
}

.btn--ml {
  background: var(--ml-yellow);
  border: 1px solid var(--ml-yellow-border);
  color: #111827;
  box-shadow: 0 10px 22px rgba(234, 179, 8, 0.16),
    0 0 18px rgba(250, 204, 21, 0.3);
}

.btn--ml:hover {
  filter: brightness(1.02);
  box-shadow: 0 12px 26px rgba(234, 179, 8, 0.2),
    0 0 22px rgba(250, 204, 21, 0.42);
}

/* ====== Pills ====== */
.pill {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.3px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.pill--ml {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 24, 39, 0.14);
  color: #14532d;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.18);
}

/* ====== Mobile hamburger ====== */
.nav__toggle {
  display: none;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  position: relative;
}

.hamburger span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.22s ease, opacity 0.18s ease;
  transform-origin: center;
}

.nav__toggle:checked + .hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav__toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}

.nav__toggle:checked + .hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ====== Hero ====== */
.hero {
  flex: 1;
  display: flex;
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("/static/img/banner.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  filter: saturate(1.05) contrast(1.05);
  opacity: 0.9;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.45) 35%,
    rgba(0, 0, 0, 0.2) 60%,
    rgba(0, 0, 0, 0.05) 80%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 24px 0;
  min-height: calc(100svh - 74px);
}

.hero__left {
  flex: 0 1 760px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  min-width: 280px;
}

.kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 800;
  font-size: 14px;
  align-items: center;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
}

h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: #ffffff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.accent {
  color: var(--green);
  font-weight: 900;
  font-style: italic;
  text-shadow: 0 0 22px rgba(34, 197, 94, 0.28);
}

.sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.5;
  max-width: 56ch;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.trust__chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(248, 250, 252, 0.85);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 999px;
  font-weight: 800;
  color: var(--text);
  font-size: 13px;
}

.trust__icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #166534;
  font-weight: 900;
  flex: 0 0 auto;
}

/* ====== Hero Title ====== */
.hero__title {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.5px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero__titleTop {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(22px, 2.2vw, 34px);
  color: #ffffff;
}

.hero__titleBottom {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: 0.08em;
  color: var(--green-2);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

/* =========================================
   NOSOTROS
========================================= */
.about {
  position: relative;
  padding: 90px 0 80px;
  overflow: hidden;
  background: radial-gradient(
      1200px 520px at 50% 0%,
      rgba(34, 197, 94, 0.18),
      transparent 60%
    ),
    radial-gradient(
      900px 420px at 10% 20%,
      rgba(45, 212, 191, 0.14),
      transparent 60%
    ),
    radial-gradient(
      900px 420px at 90% 30%,
      rgba(34, 197, 94, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, #f7fbff 0%, #eef6f6 55%, #ffffff 100%);
}

.about::before {
  content: "";
  position: absolute;
  inset: -120px -140px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.88;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='900' viewBox='0 0 1600 900'%3E%3Cdefs%3E%3CradialGradient id='g' cx='50%25' cy='20%25' r='70%25'%3E%3Cstop offset='0%25' stop-color='%2322c55e' stop-opacity='.16'/%3E%3Cstop offset='70%25' stop-color='%2322c55e' stop-opacity='0'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect width='1600' height='900' fill='url(%23g)'/%3E%3Cg fill='none' stroke='%2322c55e' stroke-opacity='.18' stroke-width='3'%3E%3Cpath d='M-80 250 C 220 120, 520 380, 820 250 S 1420 120, 1720 250'/%3E%3Cpath d='M-120 360 C 190 220, 520 520, 860 360 S 1460 220, 1780 360'/%3E%3Cpath d='M-140 480 C 160 340, 560 660, 940 480 S 1500 340, 1820 480'/%3E%3Cpath d='M-180 620 C 120 480, 620 780, 1020 620 S 1540 480, 1880 620'/%3E%3C/g%3E%3Cg fill='%23ffffff'%3E%3Ccircle cx='240' cy='170' r='2' opacity='.5'/%3E%3Ccircle cx='520' cy='120' r='1.6' opacity='.46'/%3E%3Ccircle cx='980' cy='160' r='2.2' opacity='.42'/%3E%3Ccircle cx='1220' cy='110' r='1.6' opacity='.42'/%3E%3Ccircle cx='1420' cy='210' r='2' opacity='.34'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(
      700px 340px at 50% 10%,
      rgba(255, 255, 255, 0.65),
      transparent 65%
    );
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(0.2px);
}

.about .container {
  position: relative;
  z-index: 1;
}

.about__inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.about__titleRow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: center;
}

.about__line {
  height: 3px;
  width: min(260px, 22vw);
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  border-radius: 999px;
}

.about__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f172a;
}

.about__title span {
  color: var(--green);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.about__media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.85);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 55px 140px rgba(2, 6, 23, 0.16), 0 22px 55px rgba(2, 6, 23, 0.1);
  min-height: 420px;
}

.about__mediaBg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(1.03) contrast(1.02);
}

.about__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      520px 260px at 15% 15%,
      rgba(255, 255, 255, 0.35),
      transparent 60%
    ),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.16));
}

.about__badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.14);
  font-weight: 900;
  font-size: 13px;
  color: #0f172a;
}

.about__badgeDot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-2);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.16);
}

.about__content {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 45px 120px rgba(2, 6, 23, 0.12),
    0 18px 44px rgba(2, 6, 23, 0.08);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about__headline {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 22px;
  line-height: 1.2;
  color: #0f172a;
}

.about__accent {
  color: var(--green);
}

.about__text {
  margin: 0;
  color: #334155;
  font-size: 15.5px;
  line-height: 1.55;
}

.about__bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about__bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.06);
  font-weight: 800;
  color: #0f172a;
}

.about__icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #166534;
  flex: 0 0 auto;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 4px;
}

.aboutStat {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 14px 12px;
  text-align: center;
  box-shadow: 0 16px 34px rgba(2, 6, 23, 0.08);
}

.aboutStat__num {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: #0f172a;
}

.aboutStat__label {
  margin-top: 4px;
  font-weight: 800;
  font-size: 12px;
  color: #64748b;
}

.about__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

/* =========================================
   CATEGORÍAS — BANNER / SLIDER
========================================= */
.catsBanner {
  padding: 100px 0 80px;
  background: #eef3f7;
  overflow: hidden;
}

.catsBanner__inner {
  display: flex;
  flex-direction: column;
  gap: 42px;
  margin-bottom: 60px;
}

.catsBanner__titleRow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  text-align: center;
}

.catsBanner__line {
  height: 3px;
  width: min(260px, 22vw);
  background: linear-gradient(90deg, transparent, #22c55e, transparent);
  border-radius: 999px;
}

.catsBanner__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f172a;
}

.catsBanner__title span {
  color: #16a34a;
}

/* FULL WIDTH */
.catsSlider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
}

.catsSlider--full {
  width: 100%;
  max-width: 100%;
  padding: 0 28px;
}

.catsSlider__trackWrap {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.catsSlider__track {
  display: flex;
  transition: transform 0.35s ease;
  width: 100%;
}

.catsSlide {
  min-width: 100%;
  width: 100%;
  height: 560px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.16);
}

.catsSlide__content {
  height: 100%;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px clamp(28px, 7vw, 110px);
  color: #fff;
}

.catsSlide__eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.86;
  margin-bottom: 14px;
}

.catsSlide__name {
  margin: 0 0 10px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(34px, 4vw, 64px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
}

.catsSlide__desc {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  max-width: 40ch;
}

.catsSlide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.catsSlide__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 16px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  font-size: 15px;
  transition: all 0.22s ease;
}

.catsSlide__btn--web {
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  border: 1px solid rgba(8, 75, 32, 0.35);
  box-shadow: 0 14px 28px rgba(34, 197, 94, 0.3);
}

.catsSlide__btn--web:hover {
  transform: translateY(-2px);
}

.catsSlide__btn--ml {
  background: linear-gradient(180deg, #ffe600 0%, #facc15 100%);
  color: #111827;
  border: 1px solid rgba(202, 138, 4, 0.3);
  box-shadow: 0 14px 28px rgba(250, 204, 21, 0.25);
}

.catsSlide__btn--ml:hover {
  transform: translateY(-2px);
}

.catsSlide__btn--disabled {
  background: #cbd5e1;
  color: #475569;
  cursor: not-allowed;
  pointer-events: none;
}

/* Flechas */
.catsSlider__nav {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border: none;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.82);
  color: #fff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, background 0.18s ease;
}

.catsSlider__nav:hover {
  transform: translateY(-2px);
  background: rgba(15, 23, 42, 0.95);
}

.catsBanner__cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.catsBanner__btnAll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 16px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  border: 1px solid rgba(8, 75, 32, 0.35);
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.28);
  transition: all 0.25s ease;
}

.catsBanner__btnAll:hover {
  transform: translateY(-2px);
}

.catsEmpty {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 20px 0;
}

.catsEmpty__card {
  max-width: 520px;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(2, 6, 23, 0.08);
}

.catsEmpty__card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 900;
  color: #0f172a;
}

.catsEmpty__card p {
  margin: 0 0 20px;
  color: #64748b;
  font-size: 15px;
}

@media (max-width: 980px) {
  .catsBanner {
    padding: 70px 0 50px;
  }

  .catsSlider--full {
    padding: 0 18px;
  }

  .catsSlide {
    height: 460px;
  }

  .catsSlide__content {
    padding: 42px 34px;
    max-width: 480px;
  }

  .catsSlider {
    gap: 12px;
  }

  .catsSlider__nav {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    font-size: 34px;
  }
}

@media (max-width: 640px) {
  .catsBanner__title {
    font-size: 18px;
  }

  .catsBanner__line {
    width: min(120px, 18vw);
  }

  .catsSlider {
    gap: 8px;
  }

  .catsSlider--full {
    padding: 0 10px;
  }

  .catsSlide {
    height: 420px;
    border-radius: 22px;
  }

  .catsSlide__content {
    max-width: none;
    padding: 28px 22px;
    justify-content: end;
  }

  .catsSlide__desc {
    font-size: 15px;
  }

  .catsSlide__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .catsSlide__btn {
    width: 100%;
    min-width: 0;
  }

  .catsSlider__nav {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    font-size: 30px;
    border-radius: 12px;
  }
}

/* =========================================
   DESPACHO
========================================= */
/* =========================
   HERO DESPACHO SIMPLE
========================= */
.deliveryHeroSimple {
  position: relative;
  overflow: hidden;
  background: #f6fbf7;
  padding: 72px 0;
}

.deliveryHeroSimple__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.78) 0%,
      rgba(255, 255, 255, 0.62) 38%,
      rgba(240, 253, 244, 0.38) 100%
    ),
    url("/static/img/hero-despacho.png") center center / cover no-repeat;
  opacity: 1;
  z-index: 1;
}

.deliveryHeroSimple::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(34, 197, 94, 0.12),
      transparent 28%
    ),
    radial-gradient(circle at 85% 20%, rgba(34, 197, 94, 0.16), transparent 25%),
    radial-gradient(circle at 70% 80%, rgba(22, 163, 74, 0.1), transparent 24%);
  z-index: 1;
  pointer-events: none;
}

.deliveryHeroSimple__container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.deliveryHeroSimple__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.deliveryHeroSimple__mapWrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  padding: 22px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1),
    0 10px 24px rgba(34, 197, 94, 0.08);
}

.deliveryHeroSimple__mapWrap::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 40px;
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.1),
    rgba(255, 255, 255, 0.04)
  );
  z-index: -1;
  filter: blur(10px);
}

.deliveryHeroSimple__map {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(15, 23, 42, 0.12));
}

.deliveryHeroSimple__content {
  max-width: 640px;
}

.deliveryHeroSimple__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
  font-size: 0.92rem;
  font-weight: 800;
  border: 1px solid rgba(34, 197, 94, 0.16);
  margin-bottom: 18px;
}

.deliveryHeroSimple__title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.deliveryHeroSimple__title span {
  color: #16a34a;
}

.deliveryHeroSimple__title strong {
  color: #22c55e;
  font-weight: 900;
}

.deliveryHeroSimple__text {
  margin: 20px 0 0;
  max-width: 560px;
  color: #334155;
  font-size: 1.12rem;
  line-height: 1.7;
}

.deliveryHeroSimple__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.deliveryHeroSimple__chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 800;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.deliveryHeroSimple__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  min-height: 60px;
  padding: 0 30px;
  border-radius: 999px;
  text-decoration: none;
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  color: #fff;
  font-size: 1.02rem;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.3);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.deliveryHeroSimple__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(34, 197, 94, 0.34);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .deliveryHeroSimple {
    padding: 56px 0;
  }

  .deliveryHeroSimple__container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .deliveryHeroSimple__content {
    max-width: 100%;
    text-align: center;
  }

  .deliveryHeroSimple__chips {
    justify-content: center;
  }

  .deliveryHeroSimple__btn {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .deliveryHeroSimple {
    padding: 42px 0;
  }

  .deliveryHeroSimple__container {
    padding: 0 18px;
  }

  .deliveryHeroSimple__mapWrap {
    padding: 14px;
    border-radius: 24px;
  }

  .deliveryHeroSimple__title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .deliveryHeroSimple__text {
    font-size: 1rem;
  }

  .deliveryHeroSimple__chips {
    gap: 10px;
  }

  .deliveryHeroSimple__chip {
    min-height: 40px;
    font-size: 0.88rem;
    padding: 0 14px;
  }

  .deliveryHeroSimple__btn {
    width: 100%;
  }
}
/* =========================================
   UBICACIÓN
========================================= */
.loc {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background: radial-gradient(
      1200px 520px at 50% 0%,
      rgba(34, 197, 94, 0.22),
      transparent 60%
    ),
    radial-gradient(
      900px 420px at 10% 20%,
      rgba(45, 212, 191, 0.18),
      transparent 60%
    ),
    radial-gradient(
      900px 420px at 90% 30%,
      rgba(34, 197, 94, 0.14),
      transparent 60%
    ),
    linear-gradient(180deg, #f7fbff 0%, #eef6f6 55%, #f3f6f9 100%);
}

.loc::before {
  content: "";
  position: absolute;
  inset: -120px -140px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.92;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='900' viewBox='0 0 1600 900'%3E%3Cdefs%3E%3CradialGradient id='g' cx='50%25' cy='20%25' r='70%25'%3E%3Cstop offset='0%25' stop-color='%2322c55e' stop-opacity='.18'/%3E%3Cstop offset='70%25' stop-color='%2322c55e' stop-opacity='0'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect width='1600' height='900' fill='url(%23g)'/%3E%3Cg fill='none' stroke='%2322c55e' stroke-opacity='.22' stroke-width='3'%3E%3Cpath d='M-80 250 C 220 120, 520 380, 820 250 S 1420 120, 1720 250'/%3E%3Cpath d='M-120 360 C 190 220, 520 520, 860 360 S 1460 220, 1780 360'/%3E%3Cpath d='M-140 480 C 160 340, 560 660, 940 480 S 1500 340, 1820 480'/%3E%3Cpath d='M-180 620 C 120 480, 620 780, 1020 620 S 1540 480, 1880 620'/%3E%3C/g%3E%3Cg fill='%23ffffff'%3E%3Ccircle cx='240' cy='170' r='2' opacity='.55'/%3E%3Ccircle cx='520' cy='120' r='1.6' opacity='.5'/%3E%3Ccircle cx='980' cy='160' r='2.2' opacity='.45'/%3E%3Ccircle cx='1220' cy='110' r='1.6' opacity='.45'/%3E%3Ccircle cx='1420' cy='210' r='2' opacity='.38'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(
      700px 340px at 50% 10%,
      rgba(255, 255, 255, 0.65),
      transparent 65%
    );
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(0.2px);
}

.loc .container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
}

.loc__titleRow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: center;
  margin-bottom: 60px;
}

.loc__line {
  height: 3px;
  width: min(260px, 22vw);
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  border-radius: 999px;
}

.loc__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f172a;
}

.loc__title span {
  color: var(--green);
}

.locBanner {
  position: relative;
  width: 100%;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(226, 232, 240, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 40px 120px rgba(2, 6, 23, 0.12),
    0 12px 40px rgba(2, 6, 23, 0.06);
  padding: 28px;
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 26px;
  align-items: stretch;
  min-height: 280px;
}

.locPanel {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 55px rgba(2, 6, 23, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.locMapCard {
  position: relative;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  overflow: hidden;
  box-shadow: 0 40px 110px rgba(2, 6, 23, 0.14),
    0 12px 38px rgba(2, 6, 23, 0.08);
  min-height: 320px;
  transform: rotate(0.6deg);
}

.locMapCard::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  pointer-events: none;
  z-index: 2;
}

.locMapCard__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.locPanel--find {
  text-align: center;
  gap: 14px;
}

.locFindTitle {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 15px;
  text-transform: uppercase;
  color: #0f172a;
}

.locFindLine {
  width: 86px;
  height: 3px;
  border-radius: 999px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, #22c55e, transparent);
}

.locFindText {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #475569;
  line-height: 1.45;
}

.locSchedule {
  margin: 6px 0 18px;
  font-size: 14px;
  font-weight: 700;
  color: #475569;
  line-height: 1.45;
}

.locBtn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 18px;
  border-radius: 16px;
  font-weight: 900;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  border: 1px solid rgba(8, 75, 32, 0.28);
  box-shadow: 0 18px 32px rgba(2, 6, 23, 0.08),
    0 10px 20px rgba(34, 197, 94, 0.18);
  transition: all 0.2s ease;
}

.locBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 44px rgba(2, 6, 23, 0.12),
    0 14px 26px rgba(34, 197, 94, 0.24);
}

/* =========================================
   FOOTER
========================================= */
.siteFooter {
  position: relative;
  background: #ffffff;
  overflow: hidden;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.siteFooter__wrap {
  position: relative;
  z-index: 3;
  padding: 24px 0 0;
}

.siteFooter__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
}

.siteFooter__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #0f172a;
  min-width: 260px;
}

.siteFooter__logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.siteFooter__brandText {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.siteFooter__brandName {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 22px;
}

.siteFooter__brandTag {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.siteFooter__block {
  flex: 1;
  max-width: 360px;
  padding: 0 18px;
  position: relative;
}

.siteFooter__block:not(:first-of-type)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(34, 197, 94, 0.45),
    rgba(148, 163, 184, 0.25),
    transparent
  );
}

.siteFooter__blockTitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f172a;
  margin-bottom: 10px;
}

.siteFooter__blockTitle::before,
.siteFooter__blockTitle::after {
  content: "";
  height: 2px;
  width: 80px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #22c55e, transparent);
}

.siteFooter__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.siteFooter__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  color: #0f172a;
}

.siteFooter__ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eafff1;
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #16a34a;
  font-size: 14px;
}

.siteFooter__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}

.siteFooter__socialBtn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.08);
  font-weight: 900;
  color: #16a34a;
  transition: all 0.3s ease;
}

.siteFooter__socialBtn:hover {
  background: #16a34a;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.siteFooter__socialIcon {
  width: 20px;
  height: 20px;
}

.siteFooter__handles {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  color: #334155;
}

.siteFooter__cta {
  min-width: 260px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
  z-index: 5;
}

.siteFooter__waBtn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 44px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 15px;
  white-space: nowrap;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(180deg, #28d566 0%, #1fb154 100%);
  border: 1px solid rgba(10, 120, 50, 0.2);
  box-shadow: 0 14px 28px rgba(34, 197, 94, 0.25),
    0 10px 20px rgba(2, 6, 23, 0.15);
  transition: 0.18s ease;
}

.siteFooter__waBtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(34, 197, 94, 0.35),
    0 14px 26px rgba(2, 6, 23, 0.18);
}

.siteFooter__waIco {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.siteFooter__waIco svg {
  width: 16px;
  height: 16px;
  display: block;
}

.siteFooter__bottom {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 0 18px;
  border-top: 1px solid rgba(226, 232, 240, 0.85);
}

.siteFooter__copy {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}

.siteFooter__ml {
  position: absolute;
  right: 140px;
  top: 50%;
  transform: translateY(-50%);
}

.siteFooter__mlImg {
  height: 34px;
  filter: drop-shadow(0 10px 18px rgba(2, 6, 23, 0.12));
  border-radius: 8px;
}

.siteFooter__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.siteFooter__decor::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -30px;
  width: 520px;
  height: 140px;
  background: linear-gradient(180deg, #16a34a 0%, #0f7a34 100%);
  transform: rotate(-12deg);
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.22);
}

/* ===== Carrito ===== */
.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 150px;
}

.header-cart {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.08);
  cursor: pointer;
  color: #0f172a;
  font-weight: 800;
  transition: 0.2s ease;
}

.header-cart:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.12);
}

.header-cart__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
}

.header-cart__text {
  font-size: 14px;
  font-weight: 800;
}

.header-cart__count {
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(34, 197, 94, 0.28);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 4000;
  pointer-events: none;
}

.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.54);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(460px, 100%);
  height: 100%;
  background: #ffffff;
  box-shadow: -24px 0 60px rgba(2, 6, 23, 0.2);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s ease;
  will-change: transform;
}

.cart-drawer.is-open {
  pointer-events: auto;
}

.cart-drawer.is-open .cart-drawer__backdrop {
  opacity: 1;
}

.cart-drawer.is-open .cart-drawer__panel {
  transform: translateX(0);
}

.cart-drawer__header {
  padding: 20px 20px 16px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.cart-drawer__title {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  color: #0f172a;
}

.cart-drawer__subtitle {
  margin: 6px 0 0;
  color: #64748b;
  font-size: 14px;
}

.cart-drawer__close {
  width: 42px;
  height: 42px;
  border: none;
  background: #f1f5f9;
  border-radius: 999px;
  font-size: 24px;
  font-weight: 800;
  cursor: pointer;
  color: #0f172a;
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
}

.cart-drawer__items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-drawer__empty {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #64748b;
  font-weight: 700;
}

.cart-drawer__footer {
  border-top: 1px solid #e2e8f0;
  padding: 18px 20px 20px;
  background: #fff;
}

.cart-drawer__summary {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.cart-drawer__summaryRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #0f172a;
  font-weight: 700;
}

.cart-drawer__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.cart-drawer__clear,
.cart-drawer__whatsapp {
  height: 48px;
  border-radius: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.cart-drawer__clear {
  border: none;
  background: #e2e8f0;
  color: #0f172a;
  cursor: pointer;
}

.cart-drawer__whatsapp {
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
}

.cart-drawer__whatsapp.is-disabled {
  background: #cbd5e1;
  color: #475569;
  pointer-events: none;
}

.cart-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #fff;
}

.cart-item__media {
  width: 84px;
  height: 84px;
  border-radius: 14px;
  overflow: hidden;
  background: #f8fafc;
}

.cart-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-item__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.cart-item__category {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 800;
  color: #16a34a;
  text-transform: uppercase;
}

.cart-item__title {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  color: #0f172a;
}

.cart-item__brand {
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
}

.cart-item__remove {
  width: 32px;
  height: 32px;
  border: none;
  background: #fee2e2;
  color: #991b1b;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
}

.cart-item__bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item__qtyBtn {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 10px;
  background: #e2e8f0;
  color: #0f172a;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
}

.cart-item__qtyInput {
  width: 60px;
  height: 32px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  text-align: center;
  font-weight: 800;
}

.cart-item__prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.cart-item__unit {
  font-size: 12px;
  color: #64748b;
}

.cart-item__subtotal {
  font-size: 15px;
  color: #0f172a;
}

.cart-toast {
  position: fixed;
  right: 20px;
  top: 94px;
  z-index: 4500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 14px;
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.22);
  opacity: 0;
  transform: translateY(-12px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.cart-toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cart-toast__icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #22c55e;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.cart-toast__text {
  font-size: 14px;
  font-weight: 800;
}

/* ===== Checkout modal ===== */
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.checkout-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.checkout-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(4px);
}

.checkout-modal__panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(92vw, 560px);
  transform: translate(-50%, -50%) scale(0.96);
  background: #ffffff;
  color: #0f172a;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease;
}

.checkout-modal.is-open .checkout-modal__panel {
  transform: translate(-50%, -50%) scale(1);
}

.checkout-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #0f172a;
}

.checkout-modal__title {
  margin: 0 0 8px;
  font-size: 1.4rem;
  font-weight: 800;
}

.checkout-modal__text {
  margin: 0 0 20px;
  color: #475569;
  line-height: 1.5;
}

.checkout-modal__options {
  display: grid;
  gap: 14px;
}

.checkout-modal__option {
  border: 1px solid #dbe3ea;
  background: #f8fafc;
  border-radius: 18px;
  padding: 16px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.checkout-modal__option:hover {
  background: #ecfdf5;
  border-color: #86efac;
  transform: translateY(-2px);
}

.checkout-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.checkout-form__group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.checkout-form__group:nth-child(3),
.checkout-form__group:nth-child(4),
.checkout-form__group:nth-child(5) {
  grid-column: 1 / -1;
}

.checkout-form__group label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

.checkout-form__group input {
  width: 100%;
  border: 1px solid #dbe3ea;
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
  font-size: 0.98rem;
}

.checkout-form__group input:focus {
  border-color: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

.checkout-form__actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.checkout-form__back,
.checkout-form__submit {
  border: 0;
  border-radius: 14px;
  padding: 14px 18px;
  font-weight: 800;
  cursor: pointer;
}

.checkout-form__back {
  background: #e2e8f0;
  color: #0f172a;
}

.checkout-form__submit {
  flex: 1;
  background: #22c55e;
  color: #fff;
}

.checkout-form__submit:hover {
  background: #16a34a;
}

/* ===== WhatsApp flotante ===== */
.wa-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #25d366;
  color: white;
  padding: 14px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  animation: waAppear 0.8s ease-out forwards 0.8s;
}

.wa-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.wa-badge {
  background: white;
  color: #25d366;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 20px;
}

.wa-text {
  font-size: 0.9rem;
}

.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: waPulse 2.5s infinite;
}

@keyframes waAppear {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  60% {
    opacity: 1;
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.15);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .eventBanner {
    display: flex;
    flex-direction: column;
  }

  .loc {
    padding: 70px 0;
  }

  .locBanner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
    border-radius: 18px;
  }

  .locMapCard {
    transform: rotate(0.35deg);
    min-height: 260px;
    border-radius: 16px;
  }

  .locPanel {
    border-radius: 16px;
  }

  .siteFooter__top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .siteFooter__block {
    max-width: none;
    padding: 0;
  }

  .siteFooter__block:not(:first-of-type)::before {
    display: none;
  }

  .siteFooter__cta {
    justify-content: center;
  }

  .siteFooter__ml {
    position: static;
    transform: none;
  }

  .siteFooter__bottom {
    justify-content: space-between;
    flex-direction: column;
  }
}

@media (max-width: 980px) {
  .header__actions {
    display: none;
    min-width: auto;
  }

  .hamburger {
    display: flex;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand__text {
    min-width: 0;
  }

  .brand__name,
  .brand__tag {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 52vw;
  }

  .nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 10px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(2, 6, 23, 0.08);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
    will-change: transform, opacity;
  }

  .nav a {
    padding: 14px 14px;
    border-radius: 14px;
  }

  .nav__toggle:checked ~ .nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero__inner {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    text-align: center;
    gap: 14px;
    padding: 16px 0;
    min-height: calc(100svh - 74px);
  }

  .hero__left {
    flex: 1;
    min-width: 0;
    width: 100%;
    align-items: center;
    padding: 10px;
  }

  .hero__bg::after {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.35) 45%,
      rgba(0, 0, 0, 0.1) 75%,
      rgba(0, 0, 0, 0) 100%
    );
  }

  .hero__bg {
    background-position: center;
    background-image: url("/static/img/banner.png");
  }

  .kicker {
    display: none;
  }

  h1 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .sub {
    font-size: 15px;
  }

  .hero__ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .trust__chip {
    width: 100%;
    justify-content: flex-start;
  }

  .hero__titleTop {
    font-size: clamp(18px, 4.6vw, 26px);
  }

  .hero__titleBottom {
    font-size: clamp(30px, 8.5vw, 44px);
  }

  .about {
    padding: 60px 0 50px;
  }

  .about__inner {
    gap: 34px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about__media {
    min-height: 280px;
  }

  .about__content {
    padding: 18px;
  }

  .about__headline {
    font-size: 19px;
  }

  .about__stats {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .cats {
    padding: 60px 0 50px;
  }

  .cats__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .catPoster {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
  }

  .catPoster__frame {
    height: 360px;
  }

  .header-cart {
    padding: 0 12px;
    height: 42px;
  }

  .header-cart__text {
    display: none;
  }
}

@media (max-width: 640px) {
  .cart-toast {
    right: 12px;
    left: 12px;
    top: 86px;
  }

  .checkout-modal__panel {
    width: min(94vw, 560px);
    padding: 22px 18px;
    border-radius: 20px;
  }

  .checkout-form__grid {
    grid-template-columns: 1fr;
  }

  .checkout-form__group:nth-child(3),
  .checkout-form__group:nth-child(4),
  .checkout-form__group:nth-child(5) {
    grid-column: auto;
  }

  .checkout-form__actions {
    flex-direction: column;
  }

  .catPoster__frame {
    height: 380px;
  }

  .catPoster__label {
    font-size: 18px;
    padding: 14px 18px;
  }

  .catPoster__actions {
    left: 20px;
    right: 20px;
    bottom: 24px;
    flex-direction: column;
    gap: 12px;
  }

  .catPoster__actions .catPoster__btn {
    width: 100%;
    min-width: 0;
    max-width: none;
  }
}

@media (max-width: 520px) {
  .about__title {
    font-size: 16px;
  }

  .about__line {
    width: min(160px, 18vw);
  }

  .about__stats {
    grid-template-columns: 1fr;
  }

  .about__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .cats__title {
    font-size: 16px;
  }

  .siteFooter__brand {
    justify-content: center;
  }

  .siteFooter__waBtn {
    width: 100%;
    justify-content: center;
  }

  .siteFooter__copy {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .wa-text {
    display: none;
  }
}
