:root {
  --navy: #071325;
  --purple: #a55bcf;
  --deep: #74359e;
  --lilac: #e1a8ed;
  --paper: #faf7fc;
  --white: #fff;
  --muted: #697386;
  --line: rgba(7,19,37,.12);
  --shadow: 0 25px 70px rgba(7,19,37,.13);
  --shell: min(1180px,calc(100% - 32px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 85% 2%, rgba(225,168,237,.22), transparent 28rem), var(--paper);
  color: var(--navy);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
}
body.no-scroll { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
.landing-header {
  position: sticky;
  z-index: 25;
  top: 0;
  height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--shell);
  margin: auto;
  background: rgba(250,247,252,.90);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  border: 0;
  color: var(--navy);
  background: transparent;
  font-weight: 950;
  cursor: pointer;
}
.brand img {
  width: 48px;
  border-radius: 50%;
  filter: drop-shadow(0 5px 10px rgba(116, 53, 158, .20));
  transform-origin: 50% 54%;
  animation: brand-breathe 6s ease-in-out infinite;
  transition: filter .3s ease, transform .3s ease;
}
.brand:hover img,
.brand:focus-visible img {
  filter: drop-shadow(0 8px 14px rgba(116, 53, 158, .36));
  transform: rotate(7deg) scale(1.06);
}
.brand span { font-size: 1.1rem; }

@keyframes brand-breathe {
  0%, 76%, 100% { transform: rotate(0deg) scale(1); }
  82% { transform: rotate(-4deg) scale(1.025); }
  89% { transform: rotate(4deg) scale(1.045); }
  95% { transform: rotate(-2deg) scale(1.018); }
}
.landing-header nav {
  display: flex;
  gap: 5px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}
.landing-header nav button {
  height: 39px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}
.landing-header nav button.active { color: var(--white); background: var(--navy); }
.header-cart {
  justify-self: end;
  min-height: 45px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 900;
  cursor: pointer;
}
.header-cart b { color: var(--deep); }
.view {
  display: none;
  width: var(--shell);
  min-height: calc(100dvh - 108px);
  margin: auto;
  padding: 28px 0 100px;
}
.view.active { display: block; }
.kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--deep);
  font-size: .77rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.landing-hero {
  min-height: 590px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 40px;
  padding: 55px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 84% 15%,rgba(225,168,237,.43),transparent 28%),
    linear-gradient(135deg,#fff,#f1e8f5);
  box-shadow: var(--shadow);
}
h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem,6vw,6rem);
  line-height: .93;
  letter-spacing: -.06em;
}
.landing-hero p { max-width: 680px; color: var(--muted); font-size: 1.08rem; }
.actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 24px; }
.actions button {
  min-height: 51px;
  padding: 0 21px;
  border: 0;
  border-radius: 15px;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
  cursor: pointer;
}
.actions .secondary-action { background: var(--deep); }
.visual img {
  width: min(390px,100%);
  margin: auto;
  border-radius: 50%;
  filter: drop-shadow(0 30px 45px rgba(7,19,37,.20));
}
.social, .network-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}
.social-link {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255,255,255,.78);
  text-decoration: none;
  font-weight: 850;
}
.social-link img { width: 20px; height: 20px; }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin: 18px 0 34px;
}
.trust-strip span {
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
  font-weight: 800;
  text-align: center;
}
.shipping-card {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 25px;
  margin: 0 0 35px;
  padding: 25px 28px;
  border: 1px solid rgba(116, 53, 158, .16);
  border-radius: 27px;
  background:
    radial-gradient(circle at 50% 0, rgba(225, 168, 237, .28), transparent 18rem),
    linear-gradient(135deg, #fff, #f1e7f5);
  text-align: center;
}
.shipping-card h2 { margin-bottom: 7px; font-size: clamp(1.5rem,3vw,2.25rem); }
.shipping-card p { max-width: 680px; margin: 0 auto; color: var(--muted); }
.shipping-logos {
  position: relative;
  width: min(440px, 100%);
  aspect-ratio: 5.2 / 1;
  overflow: hidden;
  border: 1px solid rgba(116, 53, 158, .13);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(46, 24, 57, .09);
}
.shipping-logos img {
  width: 100%;
  max-width: none;
  transform: translateY(-29%);
}
.view-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.view-head h2 { margin-bottom: 0; font-size: clamp(3rem,6vw,5.3rem); letter-spacing: -.055em; }
.landing-search { position: relative; width: min(320px,100%); }
.landing-search input {
  width: 100%;
  height: 49px;
  padding: 0 44px 0 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
  outline: none;
}
.landing-search span { position: absolute; top: 10px; right: 15px; font-size: 1.3rem; }
.search-status {
  min-height: 1.4rem;
  margin: .8rem 0 0;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
  text-align: center;
}
.search-status:empty { display: none; }
.categories {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding: 2px 1px 24px;
}
.categories button {
  flex: 0 0 auto;
  height: 42px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 800;
  cursor: pointer;
}
.categories button.active { color: var(--white); background: var(--navy); }
.horizontal-products {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px,31%);
  gap: 18px;
  overflow-x: auto;
  padding: 2px 2px 18px;
  scroll-snap-type: x mandatory;
}
.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: var(--white);
  box-shadow: 0 14px 35px rgba(7,19,37,.07);
  scroll-snap-align: start;
}
.card-media {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border: 0;
  background: #f0e9f3;
  cursor: zoom-in;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 17px;
  transition: transform .45s ease;
}
.card-media:hover img { transform: scale(1.13); }
.zoom-hint {
  position: absolute;
  right: 11px;
  bottom: 11px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(7,19,37,.80);
  font-size: .72rem;
  font-weight: 900;
}
.card-body { padding: 18px; }
.card-body h3 { margin-bottom: 9px; font-size: 1.03rem; line-height: 1.25; }
.card-body .price { color: var(--deep); font-size: 1.2rem; font-weight: 950; }
.card-body p {
  display: -webkit-box;
  min-height: 4.2em;
  overflow: hidden;
  color: var(--muted);
  font-size: .88rem;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.card-actions { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.card-actions button {
  min-height: 47px;
  border: 0;
  border-radius: 14px;
  font-weight: 900;
  cursor: pointer;
}
.card-actions .add { color: var(--white); background: linear-gradient(135deg,var(--deep),var(--purple)); }
.card-actions .add:disabled { opacity: .45; }
.card-actions .detail { background: #f1ebf4; }
.swipe { color: var(--muted); text-align: center; }
.landing-promo {
  min-height: 570px;
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  gap: 28px;
  padding: 42px;
  border-radius: 35px;
  color: var(--white);
  background: linear-gradient(135deg,var(--navy),#28173d);
  box-shadow: var(--shadow);
}
.landing-promo h2 { font-size: clamp(2.7rem,6vw,5rem); line-height: .95; letter-spacing: -.055em; }
.landing-promo p { color: rgba(255,255,255,.73); }
.promo-price { display: flex; align-items: baseline; gap: 13px; }
.promo-price s { color: rgba(255,255,255,.56); }
.promo-price b { font-size: 2.3rem; }
.saving {
  display: inline-flex;
  margin: 9px 0 17px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--lilac);
  font-weight: 900;
}
.landing-promo button {
  min-height: 51px;
  padding: 0 20px;
  border: 0;
  border-radius: 15px;
  color: var(--navy);
  background: var(--white);
  font-weight: 900;
  cursor: pointer;
}
.promo-pics { display: flex; align-items: center; justify-content: center; }
.promo-pics img {
  width: 48%;
  max-height: 310px;
  object-fit: contain;
  padding: 10px;
  border-radius: 24px;
  background: var(--white);
}
.promo-pics img + img { margin-left: -9%; transform: rotate(5deg); }
.contact {
  min-height: 560px;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: center;
  gap: 40px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.contact > img { width: min(350px,100%); margin: auto; border-radius: 50%; }
.contact h2 { margin-bottom: 12px; font-size: clamp(2.8rem,6vw,5rem); line-height: .95; }
.contact p { color: var(--muted); }
.contact-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.contact-actions > * {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  color: var(--navy);
  background: #f1ebf4;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
}
.mobile-tabs { display: none; }
.landing-cart-fab {
  position: fixed;
  z-index: 38;
  left: 18px;
  bottom: 20px;
  min-height: 57px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 18px 45px rgba(7,19,37,.27);
  font-weight: 900;
  cursor: pointer;
}
.landing-cart-fab b {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  margin-left: 5px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--lilac);
}
.whatsapp-fab {
  position: fixed;
  z-index: 38;
  right: 18px;
  bottom: 20px;
  min-height: 57px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 18px 45px rgba(37,211,102,.30);
  text-decoration: none;
  font-weight: 900;
}
.whatsapp-fab img { width: 27px; height: 27px; filter: invert(1); }
.overlay {
  position: fixed;
  z-index: 49;
  inset: 0;
  background: rgba(7,19,37,.50);
  backdrop-filter: blur(5px);
}
.cart-drawer {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  width: min(450px,100%);
  height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 23px;
  background: var(--white);
  transform: translateX(105%);
  transition: transform .25s ease;
  box-shadow: -20px 0 60px rgba(7,19,37,.20);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer > header { display: flex; justify-content: space-between; padding-bottom: 13px; border-bottom: 1px solid var(--line); }
.cart-drawer > header h2 { margin-bottom: 0; }
.cart-drawer > header button, .modal-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
}
.cart-items { overflow-y: auto; }
.cart-item {
  display: grid;
  grid-template-columns: 66px 1fr auto;
  gap: 11px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item img { width: 66px; height: 66px; object-fit: contain; }
.cart-item h3 { margin-bottom: 3px; font-size: .9rem; }
.cart-item p { margin-bottom: 8px; color: var(--muted); font-size: .8rem; }
.qty { display: flex; align-items: center; gap: 8px; }
.qty button { width: 29px; height: 29px; border: 0; border-radius: 9px; cursor: pointer; }
.remove { border: 0; color: #a42b53; background: transparent; cursor: pointer; }
.cart-empty { display: grid; place-items: center; align-content: center; color: var(--muted); }
.cart-drawer > footer { padding-top: 15px; border-top: 1px solid var(--line); }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 12px; }
.shipping-mini {
  display: grid;
  grid-template-columns: 125px 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding: 10px;
  border-radius: 13px;
  background: #f5eff7;
}
.shipping-mini img { width: 125px; }
.shipping-mini small { color: var(--muted); }
.customer-field { display: grid; gap: 6px; color: var(--muted); font-size: .78rem; font-weight: 800; }
.customer-field input {
  width: 100%;
  height: 46px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 13px;
}
.checkout-button {
  width: 100%;
  min-height: 50px;
  margin: 10px 0;
  border: 0;
  border-radius: 15px;
  color: var(--white);
  background: linear-gradient(135deg,var(--deep),var(--purple));
  font-weight: 900;
  cursor: pointer;
}
.checkout-button:disabled { opacity: .45; }
.cart-drawer > footer > small { display: block; color: var(--muted); text-align: center; }
.product-modal {
  width: min(980px,calc(100% - 22px));
  max-height: 90dvh;
  padding: 0;
  border: 0;
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.product-modal::backdrop { background: rgba(7,19,37,.60); backdrop-filter: blur(6px); }
.modal-close {
  position: sticky;
  z-index: 5;
  top: 15px;
  float: right;
  margin: 15px 15px -57px;
}
.modal-grid { display: grid; grid-template-columns: 1.05fr .95fr; }
.modal-gallery { padding: 28px; background: #f1eaf4; }
.zoom-stage {
  position: relative;
  width: 100%;
  height: 470px;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: var(--white);
  cursor: zoom-in;
}
.zoom-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 22px;
  transition: transform .35s ease;
}
.zoom-stage:hover img, .zoom-stage.is-zoomed img { transform: scale(1.45); }
.zoom-stage.is-zoomed { cursor: zoom-out; }
.zoom-stage span {
  position: absolute;
  right: 13px;
  bottom: 13px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(7,19,37,.76);
  font-size: .72rem;
  font-weight: 850;
}
.thumbs { display: flex; gap: 8px; overflow-x: auto; padding-top: 11px; }
.thumbs button {
  flex: 0 0 auto;
  width: 68px;
  height: 68px;
  padding: 3px;
  border: 2px solid transparent;
  border-radius: 12px;
  background: var(--white);
}
.thumbs button.active { border-color: var(--purple); }
.thumbs img { width: 100%; height: 100%; object-fit: contain; }
.modal-copy { padding: 55px 35px 34px; }
.modal-copy h2 { font-size: clamp(2rem,4vw,3rem); line-height: 1; }
.modal-copy > strong { display: block; margin-bottom: 17px; color: var(--deep); font-size: 1.65rem; }
.modal-copy p { color: var(--muted); }
.tone-note, .modal-shipping { padding: 12px; border-radius: 14px; background: #f4edf7; }
.modal-shipping { display: grid; gap: 3px; margin: 14px 0; }
.modal-shipping span { color: var(--muted); font-size: .88rem; }
.modal-add {
  width: 100%;
  min-height: 51px;
  border: 0;
  border-radius: 15px;
  color: var(--white);
  background: linear-gradient(135deg,var(--deep),var(--purple));
  font-weight: 900;
  cursor: pointer;
}
.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 88px;
  transform: translate(-50%,20px);
  padding: 11px 15px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  opacity: 0;
  transition: .2s;
}
.toast.show { opacity: 1; transform: translate(-50%,0); }
.empty { padding: 50px; color: var(--muted); text-align: center; }
@media (max-width: 900px) {
  .landing-header { grid-template-columns: 1fr auto; }
  .landing-header nav { display: none; }
  .landing-hero { grid-template-columns: 1fr; padding: 38px; }
  .visual { display: none; }
  .horizontal-products { grid-auto-columns: 65%; }
  .landing-promo { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .contact > img { width: 220px; }
  .shipping-card { grid-template-columns: 1fr; }
  .mobile-tabs {
    position: fixed;
    z-index: 35;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    width: min(560px,calc(100% - 20px));
    height: 68px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    padding: 7px;
    border-radius: 23px;
    background: rgba(7,19,37,.95);
    box-shadow: 0 18px 50px rgba(7,19,37,.30);
  }
  .mobile-tabs button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 16px;
    color: rgba(255,255,255,.65);
    background: transparent;
    font-weight: 800;
  }
  .mobile-tabs button.active { color: var(--white); background: rgba(165,91,207,.28); }
  .landing-cart-fab, .whatsapp-fab { bottom: 86px; }
  .modal-grid { grid-template-columns: 1fr; }
  .zoom-stage { height: 340px; }
}
@media (max-width: 620px) {
  :root { --shell: calc(100% - 20px); }
  .landing-header { height: 64px; }
  .header-cart span { display: none; }
  .view { padding-top: 18px; }
  .landing-hero { min-height: 505px; padding: 30px 22px; border-radius: 27px; }
  h1 { font-size: clamp(2.75rem,13vw,4.35rem); }
  .social-link span { display: none; }
  .social-link { width: 45px; justify-content: center; padding: 0; }
  .trust-strip { grid-template-columns: 1fr; gap: 8px; }
  .shipping-card { padding: 22px; }
  .view-head { align-items: stretch; flex-direction: column; }
  .view-head h2 { font-size: 3.4rem; }
  .landing-search { width: 100%; }
  .horizontal-products { grid-auto-columns: 87%; }
  .card-media { height: 280px; }
  .landing-promo { min-height: 570px; padding: 28px 22px; }
  .promo-pics img { max-height: 230px; }
  .contact { min-height: 570px; padding: 28px 22px; }
  .contact-actions { grid-template-columns: 1fr; }
  .network-list { justify-content: center; }
  .landing-cart-fab {
    left: 12px;
    width: 58px;
    height: 58px;
    padding: 0;
  }
  .landing-cart-fab span { display: none; }
  .landing-cart-fab b {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 23px;
    height: 23px;
    font-size: .7rem;
  }
  .whatsapp-fab {
    right: 12px;
    width: 58px;
    height: 58px;
    justify-content: center;
    padding: 0;
  }
  .whatsapp-fab span { display: none; }
  .cart-drawer {
    top: auto;
    bottom: 0;
    height: min(90dvh,780px);
    border-radius: 28px 28px 0 0;
    transform: translateY(105%);
  }
  .cart-drawer.is-open { transform: translateY(0); }
  .shipping-mini { grid-template-columns: 105px 1fr; }
  .shipping-mini img { width: 105px; }
  .modal-gallery { padding: 18px; }
  .zoom-stage { height: 300px; }
  .modal-copy { padding: 25px 20px 30px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}


[hidden] {
  display: none !important;
}

.cart-item--promotion {
  background: #f8f1fb;
  border: 1px solid rgba(116, 53, 158, .18);
  border-radius: 15px;
  margin: 8px 0;
  padding: 12px 9px;
}

.cart-price-promo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 3px !important;
}

.cart-price-promo s {
  color: var(--muted);
  font-size: .76rem;
}

.cart-price-promo strong {
  color: var(--deep);
  font-size: .95rem;
}

.cart-products,
.cart-saving {
  display: block;
  line-height: 1.3;
}

.cart-products {
  color: var(--muted);
  margin-bottom: 4px;
}

.cart-saving {
  color: var(--deep);
  font-weight: 900;
  margin-bottom: 8px;
}


.header-spacer {
  justify-self: end;
  width: 150px;
  height: 1px;
}

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

.network-list {
  justify-content: center;
}

@media (min-width: 901px) {
  .horizontal-products.is-short {
    grid-auto-flow: row;
    grid-auto-columns: unset;
    grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
    justify-content: center;
    overflow-x: visible;
  }
}

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

@media (max-width: 620px) {
  .contact-actions {
    grid-template-columns: 1fr;
  }
}
/* NIVELAR TARJETAS DE PRODUCTOS - LANDING */

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-media {
  flex: 0 0 auto;
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-body h3 {
  min-height: 50px;
}

.card-body p {
  min-height: 66px;
  margin-bottom: 14px;
}

.card-actions {
  margin-top: auto;
}

.horizontal-products {
  align-items: stretch;
}

.horizontal-products .card {
  height: 100%;
}
/* HERO LANDING */

.hero-landing {
  position: relative !important;
  display: block !important;
  min-height: 500px !important;
  overflow: hidden !important;
  margin-bottom: 28px;
  border-radius: 32px;

  background-image: url("../shared/assets/banners/hero-landing.png") !important;
  background-size: cover !important;
  background-position: center left !important;
  background-repeat: no-repeat !important;
}

.hero-landing::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    270deg,
    rgba(248, 238, 238, 0.97) 0%,
    rgba(248, 238, 238, 0.90) 30%,
    rgba(248, 238, 238, 0.50) 48%,
    rgba(248, 238, 238, 0) 68%
  );
}

.hero-landing__background {
  display: none !important;
}

.hero-landing__content {
  position: relative !important;
  z-index: 2 !important;
  width: 46% !important;
  max-width: 540px !important;
  margin-left: auto !important;
  padding: 62px 46px 62px 20px !important;
}

.hero-landing__eyebrow {
  margin: 0 0 18px !important;
  color: #766583 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.13em !important;
  text-transform: uppercase !important;
}

.hero-landing__title {
  margin: 0 0 24px !important;
  color: #5f556d !important;
  font-size: clamp(38px, 4vw, 55px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.035em !important;
}

.hero-landing__subtitle {
  max-width: 430px !important;
  margin: 0 !important;
  color: #746c79 !important;
  font-size: 18px !important;
  line-height: 1.55 !important;
}

@media (max-width: 800px) {
  .hero-landing {
    min-height: 620px !important;
    background-position: 42% center !important;
  }

  .hero-landing::before {
    background: linear-gradient(
      180deg,
      rgba(248, 238, 238, 0.08) 0%,
      rgba(248, 238, 238, 0.22) 42%,
      rgba(248, 238, 238, 0.94) 70%,
      rgba(248, 238, 238, 0.98) 100%
    );
  }

  .hero-landing__content {
    position: absolute !important;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    padding: 28px 22px !important;
  }

  .hero-landing__title {
    font-size: clamp(30px, 9vw, 42px) !important;
  }

  .hero-landing__subtitle {
    font-size: 16px !important;
  }
}
.brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
}

.brand span {
  font-size: 1.2rem;
  font-weight: 950;
}

.landing-header {
  height: 86px;
}
@media (max-width: 768px) {
  .hero-landing {
    min-height: auto !important;
    border-radius: 28px !important;

    background-size: 100% auto !important;
    background-position: top center !important;
    background-repeat: no-repeat !important;
    background-color: #f8eef4 !important;

    overflow: hidden !important;
    margin-bottom: 130px !important;
  }

  .hero-landing::before {
    background: linear-gradient(
      180deg,
      rgba(248, 238, 244, 0) 0%,
      rgba(248, 238, 244, 0.08) 26%,
      rgba(248, 238, 244, 0.92) 38%,
      rgba(248, 238, 244, 1) 100%
    ) !important;
  }

  .hero-landing__content {
    position: relative !important;
    z-index: 2 !important;

    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;

    padding: 48vw 24px 42px !important;
    text-align: left !important;
  }

  .hero-landing__eyebrow {
    font-size: 13px !important;
    line-height: 1.3 !important;
    letter-spacing: 2px !important;
    margin-bottom: 16px !important;
  }

  .hero-landing__title {
    font-size: 36px !important;
    line-height: 1.06 !important;
    margin: 0 0 18px !important;
  }

  .hero-landing__subtitle {
    font-size: 17px !important;
    line-height: 1.45 !important;
    margin: 0 !important;
  }
}

/* HERO V2 · imagen editorial responsive + llamados a la acción */
.hero-landing {
  position: relative !important;
  min-height: 520px !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  margin-bottom: 30px !important;
  border: 1px solid rgba(116, 53, 158, .10);
  border-radius: 34px !important;
  background: #f7e9ef !important;
  box-shadow: 0 26px 70px rgba(67, 39, 81, .16);
}

.hero-landing::before {
  display: none !important;
}

.hero-landing__media {
  position: absolute;
  inset: 0;
  display: block;
}

.hero-landing__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-landing__content {
  position: relative !important;
  z-index: 2 !important;
  width: 42% !important;
  max-width: 540px !important;
  margin: 0 5% 0 auto !important;
  padding: 46px 0 !important;
}

.hero-landing__eyebrow {
  margin: 0 0 16px !important;
  color: var(--deep) !important;
  font-size: .74rem !important;
  font-weight: 950 !important;
  letter-spacing: .13em !important;
}

.hero-landing__title {
  margin: 0 0 18px !important;
  color: var(--navy) !important;
  font-size: clamp(2.65rem, 4.1vw, 4.5rem) !important;
  line-height: .98 !important;
  letter-spacing: -.055em !important;
}

.hero-landing__subtitle {
  max-width: 500px !important;
  margin: 0 !important;
  color: #5f5868 !important;
  font-size: 1rem !important;
  line-height: 1.55 !important;
}

.hero-landing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-landing__actions button,
.hero-landing__actions a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 0;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
}

.hero-landing__actions button {
  color: var(--white);
  background: linear-gradient(135deg, var(--deep), var(--purple));
  box-shadow: 0 12px 28px rgba(116, 53, 158, .22);
}

.hero-landing__actions a {
  color: var(--navy);
  border: 1px solid rgba(7, 19, 37, .12);
  background: rgba(255, 255, 255, .78);
}

.hero-landing__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 18px;
  color: #62566b;
  font-size: .78rem;
  font-weight: 850;
}

.hero-landing__trust span::before {
  content: "✓";
  margin-right: 6px;
  color: var(--deep);
}

@media (max-width: 900px) {
  .hero-landing__content {
    width: 45% !important;
    margin-right: 3% !important;
  }
}

@media (max-width: 768px) {
  .hero-landing {
    min-height: 0 !important;
    display: block !important;
    margin-bottom: 26px !important;
    border-radius: 28px !important;
  }

  .hero-landing__media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
  }

  .hero-landing__media img {
    object-position: center top;
  }

  .hero-landing__content {
    position: relative !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 28px 22px 30px !important;
    background: linear-gradient(180deg, #fffafc, #f8edf4);
  }

  .hero-landing__eyebrow {
    margin-bottom: 12px !important;
    font-size: .69rem !important;
  }

  .hero-landing__title {
    max-width: 12ch;
    margin-bottom: 14px !important;
    font-size: clamp(2.25rem, 10.5vw, 3.15rem) !important;
  }

  .hero-landing__subtitle {
    font-size: .96rem !important;
  }

  .hero-landing__actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .hero-landing__actions > * {
    width: 100%;
  }

  .hero-landing__trust {
    display: grid;
    gap: 7px;
  }
}

/* CONTACTO V2 · fotografía responsive + controles de cristal */
.contact {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(34px, 5vw, 68px);
  border: 1px solid rgba(225, 168, 237, .24);
  border-radius: 36px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 26px 70px rgba(7, 19, 37, .24);
  isolation: isolate;
}

.contact__media,
.contact__shade {
  position: absolute;
  inset: 0;
}

.contact__media {
  z-index: -2;
}

.contact__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 19, 37, .10) 0%, rgba(31, 16, 48, .28) 42%, rgba(20, 10, 36, .82) 72%, rgba(7, 19, 37, .93) 100%),
    linear-gradient(180deg, rgba(116, 53, 158, .08), rgba(7, 19, 37, .22));
}

.contact__content {
  width: min(58%, 650px);
  margin-left: auto;
}

.contact h2 {
  max-width: 10ch;
  margin-bottom: 15px;
  color: var(--white);
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: .91;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.contact p {
  max-width: 590px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .78);
  font-size: 1rem;
  line-height: 1.55;
}

.contact-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.contact-actions > * {
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, .22);
  color: var(--white);
  background: rgba(255, 255, 255, .11);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
}

.contact-actions > *:hover,
.contact-actions > *:focus-visible {
  border-color: rgba(225, 168, 237, .72);
  background: rgba(225, 168, 237, .20);
}

.contact .network-list {
  justify-content: flex-start;
  margin-top: 18px;
}

.contact .social-link {
  border-color: rgba(255, 255, 255, .22);
  color: var(--white);
  background: rgba(7, 19, 37, .34);
  backdrop-filter: blur(12px);
}

.contact .social-link img {
  filter: brightness(0) invert(1);
}

@media (max-width: 900px) {
  .contact__content {
    width: min(62%, 590px);
  }
}

@media (max-width: 768px) {
  .contact {
    min-height: 780px;
    align-items: flex-end;
    padding: 340px 20px 28px;
    border-radius: 28px;
  }

  .contact__media img {
    object-position: 56% center;
  }

  .contact__shade {
    background:
      linear-gradient(180deg, rgba(7, 19, 37, .05) 0%, rgba(28, 13, 45, .18) 30%, rgba(28, 13, 45, .72) 55%, rgba(7, 19, 37, .96) 86%),
      linear-gradient(90deg, rgba(116, 53, 158, .12), rgba(7, 19, 37, .28));
  }

  .contact__content {
    width: 100%;
    margin: 0;
  }

  .contact h2 {
    max-width: 10ch;
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .contact p {
    margin-bottom: 18px;
    font-size: .94rem;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .contact .network-list {
    justify-content: center;
  }
}

/* V4 · CATÁLOGO COMO VITRINA PROFESIONAL */
#catalogo {
  position: relative;
}

#catalogo::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 -18px 65px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 10%, rgba(225, 168, 237, .20), transparent 28rem),
    radial-gradient(circle at 91% 26%, rgba(165, 91, 207, .12), transparent 24rem);
}

.catalog-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: -5px 0 22px;
  padding: 17px 19px;
  border: 1px solid rgba(116, 53, 158, .13);
  border-radius: 20px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 14px 34px rgba(72, 34, 91, .06);
  backdrop-filter: blur(14px);
}

.catalog-intro p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.catalog-intro p strong {
  color: var(--navy);
}

.catalog-intro > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.catalog-intro span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #5c426a;
  background: #f3e7f6;
  font-size: .73rem;
  font-weight: 850;
}

.categories button {
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

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

.categories button.active {
  background: linear-gradient(135deg, var(--navy), #3f2458);
  box-shadow: 0 9px 20px rgba(7, 19, 37, .16);
}

.theme-copper {
  --stage-light: #fff3e8;
  --stage-mid: #eac1a7;
  --stage-deep: #9a563d;
  --stage-glow: rgba(203, 126, 88, .50);
}

.theme-burgundy {
  --stage-light: #fff0f4;
  --stage-mid: #e9a2b8;
  --stage-deep: #813047;
  --stage-glow: rgba(167, 48, 85, .45);
}

.theme-violet {
  --stage-light: #f6efff;
  --stage-mid: #c4abe8;
  --stage-deep: #5a388a;
  --stage-glow: rgba(116, 53, 158, .47);
}

.theme-sage {
  --stage-light: #f5f5e9;
  --stage-mid: #c8ceb1;
  --stage-deep: #687552;
  --stage-glow: rgba(119, 133, 91, .42);
}

.theme-rose {
  --stage-light: #fff1f7;
  --stage-mid: #e8b1ce;
  --stage-deep: #8c416c;
  --stage-glow: rgba(165, 91, 207, .38);
}

.catalog-empty {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 340px;
  padding: 42px 24px;
  border: 1px solid rgba(116, 53, 158, .14);
  border-radius: 27px;
  background:
    radial-gradient(circle at 50% 20%, rgba(225, 168, 237, .30), transparent 15rem),
    linear-gradient(145deg, rgba(255, 255, 255, .97), rgba(246, 239, 255, .86));
  box-shadow: 0 18px 42px rgba(46, 24, 57, .08);
  text-align: center;
}

.catalog-empty > span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 17px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--deep), var(--purple));
  box-shadow: 0 12px 28px rgba(116, 53, 158, .25);
  font-size: 1.5rem;
}

.catalog-empty strong {
  margin-bottom: 9px;
  color: var(--navy);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
}

.catalog-empty p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.catalog-empty--accessories {
  border-color: rgba(140, 65, 108, .18);
  background:
    radial-gradient(circle at 50% 18%, rgba(232, 177, 206, .42), transparent 16rem),
    linear-gradient(145deg, #fffafd, #faedf5);
}

@media (prefers-reduced-motion: reduce) {
  .brand img,
  .card-media img {
    animation: none !important;
  }
}

.horizontal-products {
  padding: 8px 5px 28px;
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 19, 37, .09);
  border-radius: 27px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 42px rgba(46, 24, 57, .09);
  transition: transform .28s ease, box-shadow .28s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 62px rgba(46, 24, 57, .16);
}

.card-media {
  position: relative;
  isolation: isolate;
  height: 315px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, var(--stage-glow) 0 9%, transparent 44%),
    linear-gradient(145deg, var(--stage-light), var(--stage-mid));
}

.card-media::before,
.card-media::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.card-media::before {
  width: 210px;
  height: 210px;
  top: 31px;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, .48);
  background: linear-gradient(145deg, rgba(255, 255, 255, .32), rgba(255, 255, 255, .08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .40), 0 0 62px var(--stage-glow);
  backdrop-filter: blur(3px);
}

.card-media::after {
  width: 340px;
  height: 140px;
  right: -120px;
  top: -65px;
  border: 1px solid rgba(255, 255, 255, .50);
  transform: rotate(-18deg);
}

.card-orbit {
  position: absolute;
  z-index: -1;
  width: 260px;
  height: 260px;
  top: 26px;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  transform: translateX(-50%);
  transition: transform .55s ease;
}

.card-pedestal {
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: 23px;
  width: 62%;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, .62), rgba(255, 255, 255, .08));
  box-shadow: 0 16px 18px rgba(48, 24, 57, .25);
  transform: translateX(-50%);
}

.card-media img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 24px 28px 34px;
  object-fit: contain;
  filter: drop-shadow(0 20px 14px rgba(44, 25, 49, .27));
  animation: product-float 5s ease-in-out infinite;
  transition: transform .4s ease, filter .4s ease;
}

.card:hover .card-media img {
  transform: translateY(-7px) scale(1.065);
  filter: drop-shadow(0 26px 17px rgba(44, 25, 49, .34));
}

.card:hover .card-orbit {
  transform: translateX(-50%) rotate(14deg) scale(1.06);
}

.product-badge {
  position: absolute;
  z-index: 4;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 999px;
  color: var(--white);
  background: rgba(7, 19, 37, .72);
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .04em;
  backdrop-filter: blur(8px);
}

.zoom-hint {
  z-index: 4;
  background: rgba(7, 19, 37, .74);
  backdrop-filter: blur(8px);
}

.card-body {
  position: relative;
  padding: 19px;
}

.product-eyebrow {
  display: block;
  min-height: 1.1em;
  margin-bottom: 7px;
  overflow: hidden;
  color: var(--stage-deep);
  font-size: .69rem;
  font-weight: 950;
  letter-spacing: .09em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.card-body .price {
  margin-bottom: 10px;
  color: var(--stage-deep);
  font-size: 1.32rem;
}

.card-actions .add {
  background: linear-gradient(135deg, var(--stage-deep), var(--purple));
  box-shadow: 0 10px 22px rgba(116, 53, 158, .16);
}

@keyframes product-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -5px; }
}

/* V4 · PROMOCIÓN REUTILIZABLE */
.landing-promo {
  position: relative;
  isolation: isolate;
  min-height: 590px;
  grid-template-columns: .92fr 1.08fr;
  gap: 34px;
  overflow: hidden;
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid rgba(225, 168, 237, .20);
  border-radius: 38px;
  background:
    radial-gradient(circle at 82% 32%, rgba(185, 105, 218, .35), transparent 22rem),
    radial-gradient(circle at 35% 110%, rgba(111, 50, 151, .40), transparent 28rem),
    linear-gradient(135deg, #061326 0%, #1c1034 58%, #351447 100%);
  box-shadow: 0 28px 75px rgba(7, 19, 37, .25);
}

.landing-promo::before,
.landing-promo::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 78%;
  height: 220px;
  border: 1px solid rgba(225, 168, 237, .18);
  border-radius: 50%;
  transform: rotate(-15deg);
  pointer-events: none;
}

.landing-promo::before {
  right: -18%;
  top: 2%;
}

.landing-promo::after {
  left: 30%;
  bottom: -22%;
}

.promo-copy,
.promo-visual {
  position: relative;
  z-index: 1;
}

.promo-kicker {
  display: inline-flex;
  margin-bottom: 17px;
  padding: 8px 12px;
  border: 1px solid rgba(225, 168, 237, .34);
  border-radius: 999px;
  color: #f1b9fb;
  background: rgba(225, 168, 237, .10);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.landing-promo h2 {
  max-width: 9ch;
  margin-bottom: 18px;
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.promo-benefit {
  max-width: 510px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, .82) !important;
  font-size: 1.02rem;
  line-height: 1.55;
}

.promo-includes {
  max-width: 520px;
  margin-bottom: 21px;
  color: rgba(255, 255, 255, .58) !important;
  font-size: .82rem;
  line-height: 1.45;
}

.promo-includes strong {
  color: rgba(255, 255, 255, .87);
}

.promo-price {
  align-items: flex-end;
  gap: 24px;
}

.promo-price span {
  display: grid;
  gap: 3px;
}

.promo-price small {
  color: rgba(255, 255, 255, .56);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.promo-price s {
  font-size: 1.06rem;
}

.promo-price b {
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: .9;
}

.saving {
  margin: 16px 0 19px;
  padding: 8px 12px;
  color: #32123f;
  background: linear-gradient(135deg, #f4c4ff, #d987ec);
  box-shadow: 0 10px 28px rgba(225, 168, 237, .22);
}

.landing-promo button {
  color: var(--white);
  background: linear-gradient(135deg, #b35bd2, #7b3bac);
  box-shadow: 0 15px 34px rgba(165, 91, 207, .28);
  transition: transform .2s ease, box-shadow .2s ease;
}

.landing-promo button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(165, 91, 207, .38);
}

.promo-visual {
  min-height: 460px;
  display: grid;
  place-items: center;
}

.promo-light {
  position: absolute;
  inset: 12% 4% 13%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 224, 255, .26), rgba(192, 93, 223, .12) 42%, transparent 68%);
  filter: blur(3px);
  animation: promo-breathe 5s ease-in-out infinite;
}

.discount-seal {
  position: absolute;
  z-index: 5;
  top: 5px;
  right: 1%;
  width: 98px;
  height: 98px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, .43);
  border-radius: 50%;
  color: #311140;
  background: linear-gradient(145deg, #f8d2ff, #d989ef);
  box-shadow: 0 17px 40px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .72);
  text-align: center;
  transform: rotate(7deg);
}

.discount-seal strong {
  font-size: 1.75rem;
  line-height: 1;
}

.discount-seal small {
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.promo-products {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
}

.promo-product {
  position: relative;
  width: min(42%, 235px);
  min-width: 0;
  display: grid;
  place-items: center;
  margin: 0;
  padding-bottom: 45px;
}

.promo-product img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 28px 18px rgba(0, 0, 0, .42));
  animation: product-float 4.8s ease-in-out infinite;
}

.promo-product:nth-of-type(2) img {
  animation-delay: -.9s;
}

.promo-product:nth-of-type(3) img {
  animation-delay: -1.8s;
}

.promo-product::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 160px;
  height: 210px;
  top: 54px;
  border-radius: 50%;
  background: var(--stage-glow);
  filter: blur(38px);
}

.promo-pedestal {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 46px;
  width: 92%;
  height: 25px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, .30), rgba(255, 255, 255, .04));
  box-shadow: 0 18px 19px rgba(0, 0, 0, .34);
  transform: translateX(-50%);
}

.promo-product figcaption {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  width: max-content;
  max-width: 170px;
  overflow: hidden;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  color: rgba(255, 255, 255, .74);
  background: rgba(7, 19, 37, .38);
  font-size: .67rem;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
  transform: translateX(-50%);
  backdrop-filter: blur(9px);
}

.promo-plus {
  position: relative;
  z-index: 4;
  align-self: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin: 0 -8px 36px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  color: var(--white);
  background: rgba(225, 168, 237, .18);
  font-size: 1.35rem;
  font-weight: 800;
  backdrop-filter: blur(9px);
}

.promo-products--3 .promo-product {
  width: min(31%, 190px);
}

.promo-products--3 .promo-product img {
  height: 285px;
}

@keyframes promo-breathe {
  0%, 100% { opacity: .70; transform: scale(.98); }
  50% { opacity: 1; transform: scale(1.04); }
}

@media (max-width: 900px) {
  .catalog-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-intro > div {
    justify-content: flex-start;
  }

  .landing-promo {
    grid-template-columns: 1fr;
  }

  .promo-visual {
    order: -1;
    min-height: 390px;
  }

  .promo-product img {
    height: 280px;
  }
}

@media (max-width: 620px) {
  .catalog-intro {
    padding: 15px;
  }

  .catalog-intro > div {
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .catalog-intro span {
    flex: 0 0 auto;
  }

  .horizontal-products {
    grid-auto-columns: 87%;
  }

  .card-media {
    height: 300px;
  }

  .landing-promo {
    min-height: 0;
    gap: 12px;
    padding: 25px 19px 28px;
    border-radius: 29px;
  }

  .promo-visual {
    min-height: 335px;
  }

  .discount-seal {
    width: 82px;
    height: 82px;
    right: -2px;
  }

  .discount-seal strong {
    font-size: 1.45rem;
  }

  .promo-product {
    width: 43%;
    padding-bottom: 40px;
  }

  .promo-product img,
  .promo-products--3 .promo-product img {
    height: 225px;
  }

  .promo-products--3 .promo-product {
    width: 31%;
  }

  .promo-plus {
    width: 28px;
    height: 28px;
    margin-inline: -9px;
    font-size: 1.05rem;
  }

  .landing-promo h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .promo-price {
    gap: 18px;
  }

  .promo-price b {
    font-size: 2.4rem;
  }

  .landing-promo button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .card-media img,
  .promo-product img,
  .promo-light {
    animation: none !important;
  }
}

/* V5.1 · CATÁLOGO PEDESTAL REAL */
.card-media {
  height: 330px;
  background:
    radial-gradient(ellipse at 50% 38%, color-mix(in srgb, var(--stage-glow) 68%, transparent) 0%, transparent 48%),
    radial-gradient(circle at 16% 8%, rgba(255, 255, 255, .62), transparent 24%),
    linear-gradient(150deg, var(--stage-light) 0%, var(--stage-mid) 58%, color-mix(in srgb, var(--stage-deep) 42%, var(--stage-mid)) 100%);
}

.card-media::before {
  width: 245px;
  height: 245px;
  top: 28px;
  border: 1px solid rgba(255, 255, 255, .34);
  background: radial-gradient(circle,
    rgba(255, 255, 255, .30) 0%,
    rgba(255, 255, 255, .12) 37%,
    rgba(255, 255, 255, 0) 72%);
  box-shadow:
    inset 0 0 42px rgba(255, 255, 255, .12),
    0 0 68px var(--stage-glow);
  backdrop-filter: none;
}

.card-media::after {
  width: 125%;
  height: 165px;
  top: -108px;
  right: -52%;
  border: 1px solid rgba(255, 255, 255, .34);
  box-shadow: 0 0 25px rgba(255, 255, 255, .08);
  transform: rotate(-13deg);
}

.card-glow {
  position: absolute;
  z-index: 0;
  top: 38px;
  left: 50%;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255, 255, 255, .38) 0%,
    color-mix(in srgb, var(--stage-glow) 62%, transparent) 34%,
    transparent 72%);
  filter: blur(1px);
  opacity: .88;
  transform: translateX(-50%);
  pointer-events: none;
}

.card-orbit {
  z-index: 0;
  width: 292px;
  height: 194px;
  top: 68px;
  border-color: rgba(255, 255, 255, .48);
  box-shadow:
    0 0 20px rgba(255, 255, 255, .12),
    inset 0 0 18px rgba(255, 255, 255, .08);
  transform: translateX(-50%) rotate(-13deg);
}

.card-pedestal {
  z-index: 1;
  bottom: 20px;
  width: 68%;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 50%;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, .38) 0%,
    rgba(255, 255, 255, .16) 42%,
    color-mix(in srgb, var(--stage-deep) 20%, transparent) 100%);
  box-shadow:
    inset 0 5px 13px rgba(255, 255, 255, .30),
    inset 0 -8px 14px color-mix(in srgb, var(--stage-deep) 16%, transparent),
    0 18px 24px rgba(43, 21, 53, .24),
    0 0 22px rgba(255, 255, 255, .17);
  backdrop-filter: blur(7px);
}

.card-pedestal::before,
.card-pedestal::after {
  content: "";
  position: absolute;
  left: 50%;
  border-radius: 50%;
  transform: translateX(-50%);
}

.card-pedestal::before {
  top: -9px;
  width: 100%;
  height: 25px;
  border: 1px solid rgba(255, 255, 255, .82);
  background: linear-gradient(180deg, rgba(255, 255, 255, .52), rgba(255, 255, 255, .13));
  box-shadow:
    inset 0 2px 5px rgba(255, 255, 255, .55),
    0 0 17px rgba(255, 255, 255, .24);
}

.card-pedestal::after {
  bottom: 3px;
  width: 82%;
  height: 19px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .06);
}

.card-reflection {
  position: absolute;
  z-index: 1;
  bottom: 9px;
  left: 50%;
  width: 48%;
  height: 13px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .32);
  filter: blur(7px);
  opacity: .70;
  transform: translateX(-50%);
  pointer-events: none;
}

.card-media img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 24px 31px 65px;
  object-position: center bottom;
  transform-origin: center bottom;
  scale: .98;
  filter:
    drop-shadow(0 17px 12px rgba(34, 17, 41, .27))
    drop-shadow(0 4px 3px rgba(255, 255, 255, .12));
}

.card.product-wide .card-media img {
  padding-inline: 19px;
  scale: 1.10;
}

.card:hover .card-media img {
  transform: none;
  scale: 1.035;
  filter:
    drop-shadow(0 22px 15px rgba(34, 17, 41, .34))
    drop-shadow(0 4px 3px rgba(255, 255, 255, .15));
}

.card.product-wide:hover .card-media img {
  scale: 1.15;
}

.card:hover .card-orbit {
  transform: translateX(-50%) rotate(2deg) scale(1.04);
}

@media (min-width: 901px) {
  .categories {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    overflow: visible;
  }

  .categories button {
    width: 100%;
    height: auto;
    min-height: 46px;
    padding: 7px 10px;
    line-height: 1.15;
    white-space: normal;
  }
}

@media (max-width: 620px) {
  .card-media {
    height: 315px;
  }

  .card-media::before {
    width: 230px;
    height: 230px;
  }

  .card-orbit {
    width: 270px;
  }

  .card-pedestal {
    width: 70%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .card-glow,
  .card-orbit,
  .card-pedestal,
  .card-reflection {
    transition: none !important;
  }
}
