:root {
  --navy: #003366;
  --navy-deep: #002448;
  --navy-soft: #1a4f7a;
  --blue-mid: #4f92c4;
  --orange: #e34226;
  --orange-hover: #c9361c;
  --red-stamp: #c0392b;
  --gold: #e8b923;
  --text: #1c2a38;
  --muted: #5a6b7c;
  --line: #e4eaf0;
  --bg: #ffffff;
  --bg-soft: #e8eef4;
  --shadow: 0 10px 28px rgba(0, 51, 102, 0.08);
  --radius: 14px;
  --page-width: min(1860px, 88vw);
  --page-pad: clamp(18px, 2.2vw, 32px);
  --font-title: "Bree Serif", Georgia, serif;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;
  --font-hand: "Kalam", cursive;
  --font-logo: "Lobster Two", cursive;
  --font-stamp: "Bebas Neue", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

h1,
h2,
h3 {
  font-family: var(--font-title);
  font-weight: 400;
}

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

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

button,
input {
  font-family: inherit;
}

.wrap {
  width: var(--page-width);
  max-width: 88%;
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

.skip {
  position: absolute;
  left: -999px;
}

.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 80;
  background: #fff;
  padding: 8px 12px;
}

/* Top bar */
.topbar {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 40px;
}

.topbar a:hover {
  text-decoration: underline;
}

.topbar-left,
.topbar-right,
.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-left {
  gap: 18px;
  flex-wrap: wrap;
}

.topbar .dot {
  opacity: 0.55;
}

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

.icon-fill {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

.social {
  display: flex;
  gap: 8px;
  margin-left: 4px;
}

.social a {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.social a:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Header */
.header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: 108px;
}

.brand {
  display: flex;
  align-items: center;
  justify-self: start;
  flex-shrink: 0;
}

.brand-logo {
  height: 88px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  justify-self: center;
  gap: clamp(18px, 2.2vw, 40px);
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}

.nav a:hover,
.nav a.is-active {
  color: var(--orange);
}

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

button,
.btn {
  font-family: var(--font-body);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 800;
  padding: 13px 24px;
  font-size: 15px;
  transition: 0.18s ease;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

.btn-ghost {
  background: #fff;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-ghost:hover {
  background: var(--navy);
  color: #fff;
}

.btn-block {
  width: 100%;
}

.cart-btn {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.cart-btn:hover {
  border-color: var(--navy);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  border-radius: 99px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
  padding: 0 4px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(560px, 52vw, 780px);
  overflow: hidden;
  /* background: #fff; */
  background: linear-gradient(105deg, #ebe4d8 0%, #f5efe6 22%, #faf6f0 40%, #ffffff 58%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-height: clamp(560px, 52vw, 780px);
  display: flex;
  align-items: center;
}

.hero-copy-inner {
  max-width: 520px;
  padding: clamp(48px, 6vw, 84px) 0;
}

.hero h1 {
  font-family: var(--font-title);
  font-size: clamp(36px, 4vw, 48px);
  line-height: 0.98;
  color: var(--navy);
  margin: 0 0 18px;
  font-weight: 400;
  letter-spacing: 0;
}

.hero .lead {
  font-family: var(--font-hand);
  font-style: normal;
  font-size: clamp(19px, 2vw, 22px);
  color: var(--navy-soft);
  margin: 0 0 22px;
  font-weight: 400;
  line-height: 1.45;
}

.hero .accent {
  font-family: inherit;
  font-style: normal;
  color: #e8341c;
  font-size: inherit;
  font-weight: 700;
  letter-spacing: 0;
  display: inline;
  line-height: inherit;
}

.hero-meta {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--navy-soft);
  font-size: 15px;
  margin-bottom: 30px;
  max-width: 460px;
}

.hero-meta .pin {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--blue-mid);
}

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

.hero-actions .btn {
  padding: 15px 28px;
  font-size: 16px;
}

.hero-visual {
  position: absolute;
  inset: 0 0 0 26%;
}

.hero-photo-wrap {
  position: absolute;
  inset: 0;
  -webkit-mask-image: url("../img/hero-mask.svg");
  mask-image: url("../img/hero-mask.svg");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.hero-visual .hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-visual::before {
  /* content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(235, 228, 216, 0.72) 0%, rgba(245, 239, 230, 0.25) 12%, transparent 22%);
  z-index: 1;
  pointer-events: none; */
  display: none;
}

.seal {
  position: absolute;
  right: clamp(12px, 2.5vw, 40px);
  bottom: clamp(16px, 3vw, 36px);
  width: clamp(108px, 10vw, 156px);
  height: clamp(108px, 10vw, 156px);
  z-index: 3;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.32));
  background: none;
  border: 0;
  padding: 0;
  box-shadow: none;
}

/* Sections */
.section {
  padding: 64px 0;
}

.section-soft {
  background: var(--bg-soft);
}

#como-funciona {
  padding: 80px 0 88px;
}

.section-head {
  text-align: center;
  margin-bottom: 36px;
}

.section-kicker {
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 12px;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.section h2 {
  font-family: var(--font-title);
  font-size: clamp(30px, 3.6vw, 44px);
  color: var(--navy);
  margin: 0 0 8px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.section h2.blue {
  color: var(--navy);
}

.section-head p {
  margin: 0 auto;
  max-width: 560px;
  color: var(--muted);
}

/* Product cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 45, 98, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid #ececec;
}

.card-media {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.home-card {
  flex-direction: row;
  align-items: stretch;
  min-height: 170px;
}

.home-card .card-media {
  width: 46%;
  height: auto;
  min-height: 170px;
  flex-shrink: 0;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-media img {
  transform: scale(1.05);
}

.card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.home-card .card-body {
  padding: 16px 18px 14px;
  justify-content: space-between;
  gap: 6px;
}

.card h3 {
  font-family: var(--font-title);
  font-size: 26px;
  margin: 0;
  color: var(--navy);
  font-weight: 400;
}

.home-card h3 {
  font-size: 22px;
  line-height: 1.15;
}

.card .includes {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0;
}

.home-card .includes {
  color: var(--navy);
  font-size: 13.5px;
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
}

.price {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.home-card .price {
  font-family: var(--font-body);
  color: #e53935;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.card-icon {
  width: 42px;
  height: 42px;
  color: var(--blue-mid);
}

.card-icon-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

.card-icon-btn {
  width: 56px;
  height: 56px;
  border: 0;
  background: transparent;
  color: var(--blue-mid);
  cursor: pointer;
  padding: 0;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.card-icon-btn:hover {
  color: var(--orange);
}

.card .btn {
  padding: 9px 16px;
  font-size: 14px;
  width: 100%;
  margin-top: 6px;
}

.home-card .btn {
  display: none;
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  z-index: 1;
}

.badge-joke {
  background: var(--navy);
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
}

.steps article {
  padding: 8px 2vw 4px;
  border-right: 1.5px dotted #8aa4bc;
}

.steps article:last-child {
  border-right: 0;
}

.step-num {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 700;
}

.step-icon {
  width: min(200px, 18vw);
  height: min(200px, 18vw);
  margin: 0 auto 12px;
  object-fit: contain;
  display: block;
}

.steps h3 {
  font-family: var(--font-title);
  font-size: 28px;
  color: var(--navy);
  margin: 0 0 8px;
  font-weight: 400;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 28px;
  align-items: start;
}

.review {
  text-align: center;
}

.review img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 3px solid #fff;
  box-shadow: 0 8px 20px rgba(12, 61, 102, 0.15);
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 15px;
  margin-bottom: 8px;
}

.review p {
  font-size: 14.5px;
  color: var(--text);
  margin: 0 0 10px;
}

.review strong {
  display: block;
  color: var(--navy);
}

.review small {
  color: var(--muted);
}

.stamp {
  width: 210px;
  margin-top: 4px;
  transform: rotate(-11deg);
}

.stamp-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.stamp-svg text {
  font-family: "Bebas Neue", Impact, sans-serif;
}

/* Promo strip */
.strip {
  background: var(--navy);
  color: #fff;
  padding: 22px 0;
}

.strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.strip p {
  margin: 0;
  font-size: 15px;
}

.strip strong {
  color: #ffd7a8;
}

/* Celebrations teaser */
.teaser-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
}

.teaser {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 240px;
  color: #fff;
  display: flex;
  align-items: flex-end;
}

.teaser:hover img {
  transform: scale(1.04);
}

.teaser img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.teaser::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(8, 28, 48, 0.86));
}

.teaser-body {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.teaser h3 {
  font-family: var(--font-title);
  margin: 0 0 6px;
  font-size: 26px;
}

.teaser p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

/* Footer */
.footer {
  background: var(--navy);
  color: #e7eef5;
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 36px;
}

.footer .brand-logo {
  height: 62px;
  width: auto;
  margin-bottom: 12px;
}

.footer .contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer .contact-line .icon {
  width: 15px;
  height: 15px;
  stroke: #fff;
}

.footer p,
.footer li,
.footer a {
  font-size: 14px;
  color: #c9d7e4;
}

.footer h4 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer li {
  margin: 0 0 8px;
}

.footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 0 22px;
  font-size: 13px;
  color: #9fb3c6;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* Cart drawer */
.overlay,
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 28, 48, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 50;
}

.overlay.is-open,
.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: #fff;
  z-index: 60;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.18);
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer-head,
.drawer-foot {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-foot {
  border-bottom: 0;
  border-top: 1px solid var(--line);
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.drawer h2 {
  font-family: var(--font-title);
  margin: 0;
  font-size: 26px;
  color: var(--navy);
}

.close-x {
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
  color: var(--navy);
  line-height: 1;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 12px 20px 20px;
}

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.cart-line img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
}

.cart-line h4 {
  margin: 0 0 4px;
  font-size: 15px;
  color: var(--navy);
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.qty button {
  width: 28px;
  height: 28px;
  border: 0;
  background: #fff;
  cursor: pointer;
  color: var(--navy);
}

.qty span {
  min-width: 22px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}

.cart-line .line-price {
  font-weight: 700;
  color: var(--navy);
}

.remove-line {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.empty-cart {
  text-align: center;
  padding: 48px 12px;
  color: var(--muted);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}

.cart-note {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

/* Modal siesta */
.modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  transition: 0.2s ease;
}

.modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.modal-card {
  background: #fff;
  width: min(460px, 100%);
  border-radius: 24px;
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
}

.modal-card h2 {
  font-family: var(--font-title);
  color: var(--navy);
  margin: 8px 0 10px;
  font-size: 30px;
}

.zz {
  font-size: 42px;
  letter-spacing: 4px;
}

.modal-card p {
  color: var(--muted);
  margin: 0 0 22px;
}

/* Catalog */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}

.chip {
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}

.chip.is-active,
.chip:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

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

.catalog .card {
  flex-direction: row;
  min-height: 168px;
}

.catalog .card-media {
  width: 42%;
  height: auto;
  min-height: 168px;
  flex-shrink: 0;
}

.catalog .card-body {
  padding: 16px 18px 14px;
  justify-content: space-between;
}

.catalog .price {
  font-family: var(--font-body);
  color: #e53935;
  font-size: 28px;
  font-weight: 800;
}

.catalog .card .btn {
  width: auto;
  margin-top: 0;
}

.product .card-body p.desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-hero {
  padding: 48px 0 12px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--navy);
  margin: 0 0 8px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.page-hero p {
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
}

/* Coverage */
.zones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.zone {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
}

.zone h3 {
  margin: 0 0 4px;
  color: var(--navy);
}

.zone .time {
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
}

.zone p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.map-fake {
  margin-top: 28px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #d6e8f5, #f7efe4);
  min-height: 220px;
  display: grid;
  place-items: center;
  color: var(--navy);
  text-align: center;
  padding: 24px;
  border: 1px dashed var(--navy-soft);
}

/* Legal */
.prose {
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 64px;
}

.prose h1 {
  font-family: var(--font-title);
  color: var(--navy);
}

.prose h2 {
  font-family: var(--font-title);
  color: var(--navy);
  font-size: 24px;
}

.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 80;
}

.toast.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* seasonal overlay (activated from analytics checksum) */
body.marea-roja > *:not(.qc-panel):not(.pp-floater) {
  animation: marea 1.2s linear infinite;
}

body.marea-roja::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 85;
  pointer-events: none;
  background: radial-gradient(circle at 50% 20%, rgba(227, 66, 38, 0.35), transparent 55%),
    repeating-linear-gradient(
      -12deg,
      rgba(227, 66, 38, 0.12) 0 12px,
      transparent 12px 28px
    );
  animation: marea-flash 0.45s steps(2) infinite;
}

body.marea-roja::after {
  content: "🌊 OXTAZ FOREVER· ESPETOS CON CHORIMORCI AL PODER";
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 90;
  text-align: center;
  font-family: var(--font-hand);
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  color: #fff;
  background: var(--orange);
  padding: 10px 22px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  pointer-events: none;
  white-space: nowrap;
}

@keyframes marea {
  0% { filter: hue-rotate(0deg) saturate(1.2) contrast(1.05); }
  50% { filter: hue-rotate(55deg) saturate(1.6) contrast(1.1); }
  100% { filter: hue-rotate(0deg) saturate(1.2) contrast(1.05); }
}

@keyframes marea-flash {
  from { opacity: 0.55; }
  to { opacity: 1; }
}

.qc-panel {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin: 0;
  background: rgba(0, 20, 40, 0.55);
  overflow: auto;
  overscroll-behavior: contain;
}

.qc-panel.is-on {
  display: flex;
  animation: qc-in 0.2s ease;
}

.qc-card {
  position: relative;
  width: min(720px, 94vw);
  margin: auto;
  flex-shrink: 0;
  animation: qc-pop 0.28s ease-out;
}

.qc-pic {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(78vh, 820px);
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  background: #0a1a2a;
}

.qc-x {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.qc-x:hover {
  background: var(--orange-hover);
}

@keyframes qc-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes qc-pop {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.pp-floater {
  position: fixed;
  left: 0;
  z-index: 91;
  height: auto;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.4));
  will-change: transform;
}

.pp-floater.is-on {
  opacity: 1;
  visibility: visible;
}

.pp-floater.pp-a {
  top: 10vh;
  width: clamp(180px, 26vw, 320px);
  animation: pp-cruise 9s linear infinite;
}

.pp-floater.pp-b {
  top: 42vh;
  width: clamp(150px, 22vw, 260px);
  animation: pp-cruise-rev 11s linear infinite;
}

.pp-floater.pp-c {
  top: 68vh;
  width: clamp(200px, 28vw, 340px);
  animation: pp-cruise 13s linear infinite;
}

@keyframes pp-cruise {
  0% {
    transform: translate3d(-140%, 0, 0) scaleX(1);
  }
  20% {
    transform: translate3d(22vw, 18px, 0) scaleX(1);
  }
  45% {
    transform: translate3d(calc(100vw - 55%), -10px, 0) scaleX(1);
  }
  50% {
    transform: translate3d(calc(100vw - 55%), 0, 0) scaleX(-1);
  }
  70% {
    transform: translate3d(28vw, 20px, 0) scaleX(-1);
  }
  95% {
    transform: translate3d(-140%, -8px, 0) scaleX(-1);
  }
  100% {
    transform: translate3d(-140%, 0, 0) scaleX(1);
  }
}

@keyframes pp-cruise-rev {
  0% {
    transform: translate3d(calc(100vw + 40%), 0, 0) scaleX(-1);
  }
  20% {
    transform: translate3d(55vw, -14px, 0) scaleX(-1);
  }
  45% {
    transform: translate3d(-30%, 12px, 0) scaleX(-1);
  }
  50% {
    transform: translate3d(-30%, 0, 0) scaleX(1);
  }
  70% {
    transform: translate3d(48vw, 16px, 0) scaleX(1);
  }
  95% {
    transform: translate3d(calc(100vw + 40%), -6px, 0) scaleX(1);
  }
  100% {
    transform: translate3d(calc(100vw + 40%), 0, 0) scaleX(-1);
  }
}

.mobile-nav {
  display: none;
  font-family: var(--font-body);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .home-card,
  .catalog .card {
    min-height: 150px;
  }

  .home-card .card-media,
  .catalog .card-media {
    min-height: 150px;
    width: 38%;
  }
}

@media (max-width: 1024px) {
  .catalog,
  .zones,
  .teaser-grid {
    grid-template-columns: 1fr 1fr;
  }

  .reviews,
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stamp {
    grid-column: 1 / -1;
    margin: 8px auto;
  }

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

  .hero-visual {
    inset: 0 0 0 30%;
  }
}

@media (max-width: 820px) {
  .nav,
  .header .btn-primary {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .mobile-nav.is-open {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 8px 20px 18px;
    border-top: 1px solid var(--line);
  }

  .hero-visual {
    position: relative;
    inset: auto;
    height: 340px;
  }

  .hero-photo-wrap {
    position: absolute;
    inset: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-visual::before {
    display: none;
  }

  .hero-visual::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 90px;
    background: linear-gradient(transparent, #faf7f2);
    /* background: linear-gradient(transparent, #fff); */
    z-index: 2;
  }

  .hero {
    display: flex;
    flex-direction: column-reverse;
    min-height: 0;
    background: linear-gradient(180deg, #faf7f2 0%, #ffffff 100%);
    /* background: #fff; */
  }

  .hero-copy {
    min-height: 0;
  }

  .hero-copy-inner {
    padding: 36px 0 44px;
  }

  .cards,
  .catalog,
  .steps,
  .zones,
  .teaser-grid,
  .reviews,
  .reviews-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .home-card,
  .catalog .card {
    flex-direction: column;
  }

  .home-card .card-media,
  .catalog .card-media {
    width: 100%;
    height: 200px;
    min-height: 200px;
  }

  .steps article {
    border-right: 0;
    border-bottom: 1px dashed #c5d5e4;
    padding: 28px 0;
  }

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

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .brand-logo {
    height: 52px;
  }

  .topbar-right {
    display: none;
  }

  .seal {
    width: 96px;
    height: 96px;
    right: 16px;
    bottom: 16px;
  }
}
