/* Sacogido — shared styles */
:root {
  --naranja: #F26522;
  --naranja-dark: #D9531A;
  --naranja-soft: #FFF2EA;
  --negro: #1E1E1E;
  --negro-soft: #2A2A2A;
  --gris-claro: #F5F5F5;
  --gris-medio: #E5E5E5;
  --gris-texto: #6B6B6B;
  --blanco: #FFFFFF;
  --verde: #157046;
  --amarillo-oferta: #FFD400;
  --rojo-oferta: #E11D2A;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.06), 0 2px 6px rgba(0,0,0,.04);
  --shadow: 0 6px 18px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,.12);

  --container: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: "Hanken Grotesque", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--negro);
  background: var(--blanco);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Bricolage Grotesque", "Hanken Grotesque", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(40px, 6vw, 76px); }
h2 { font-size: clamp(30px, 4vw, 50px); }
h3 { font-size: clamp(22px, 2.2vw, 28px); }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ------- NAV ------- */
.topbar {
  background: var(--negro);
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.topbar .left { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.topbar .left span { display: inline-flex; align-items: center; gap: 6px; opacity: .85; }
.topbar .dot { width: 4px; height: 4px; background: var(--naranja); border-radius: 50%; }
.topbar .right { display: flex; gap: 14px; align-items: center; }
.topbar .right a { opacity: .85; }
.topbar .right a:hover { opacity: 1; color: var(--naranja); }

nav.nav {
  background: #fff;
  border-bottom: 1px solid var(--gris-medio);
  position: sticky; top: 0; z-index: 50;
}
nav.nav .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px; gap: 28px;
}
nav.nav .links {
  display: flex; gap: 28px; align-items: center;
  font-weight: 600; font-size: 15px;
}
nav.nav .links a { padding: 10px 0; position: relative; }
nav.nav .links a:hover { color: var(--naranja); }
nav.nav .links a.active { color: var(--naranja); }
nav.nav .links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -15px; height: 3px; background: var(--naranja);
}
nav.nav .cta-row { display: flex; align-items: center; gap: 12px; }

/* ------- LOGO ------- */
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800; font-size: 30px;
  letter-spacing: -0.04em;
  line-height: 1; color: var(--negro);
}
.logo .saco { color: var(--negro); }
.logo .o-mark {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--negro); color: #fff;
  width: 1em; height: 1em; border-radius: 50%;
  position: relative;
  top: 0.04em;
}
.logo .o-mark::before {
  content: ""; position: absolute; top: -0.32em; left: 50%; transform: translateX(-50%);
  width: 0.42em; height: 0.42em; background: var(--naranja); border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  clip-path: polygon(50% 0, 100% 50%, 80% 100%, 20% 100%, 0 50%);
}
.logo .o-mark svg { width: 0.62em; height: 0.62em; fill: var(--naranja); }
.logo .gido { color: var(--naranja); }
.logo small {
  display: block; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  font-family: "Hanken Grotesque", sans-serif; font-weight: 600;
  color: var(--gris-texto); margin-top: 4px;
}

/* ------- BUTTONS ------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 700; font-size: 15px;
  padding: 14px 22px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--naranja); color: #fff; box-shadow: 0 6px 0 var(--naranja-dark); }
.btn-primary:hover { background: var(--naranja-dark); box-shadow: 0 4px 0 var(--naranja-dark); }
.btn-dark { background: var(--negro); color: #fff; }
.btn-dark:hover { background: var(--negro-soft); }
.btn-ghost { background: transparent; color: var(--negro); border-color: var(--negro); }
.btn-ghost:hover { background: var(--negro); color: #fff; }
.btn-light { background: #fff; color: var(--negro); }
.btn-lg { padding: 18px 30px; font-size: 17px; }
.btn-sm { padding: 10px 16px; font-size: 14px; }

/* ------- BADGES / RIBBONS ------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--naranja-soft); color: var(--naranja-dark);
  border-radius: 999px; padding: 6px 12px;
  font-weight: 700; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
}
.badge-dark { background: var(--negro); color: #fff; }
.badge-green { background: #E7F5EE; color: var(--verde); }
.badge-yellow { background: var(--amarillo-oferta); color: var(--negro); }

.ribbon-oferton {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--rojo-oferta); color: #fff;
  font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 8px 16px; font-size: 13px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 50%, 100% 100%, 0 100%);
  padding-right: 26px;
}

.envio-gratis {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--verde); color: #fff;
  padding: 6px 12px; border-radius: 999px;
  font-weight: 800; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
}
.envio-gratis::before {
  content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,.3);
}

/* ------- SECTIONS ------- */
section { padding: 80px 0; }
section.tight { padding: 56px 0; }
.section-title { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-title .eyebrow { color: var(--naranja); font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; font-size: 13px; margin-bottom: 14px; }
.section-title h2 { margin-bottom: 14px; }
.section-title p { color: var(--gris-texto); font-size: 18px; }

/* ------- HERO ------- */
.hero {
  background: var(--gris-claro);
  position: relative; overflow: hidden;
  padding: 80px 0 100px;
}

/* Orange variant — punchy home hero */
.hero.hero-orange { background: var(--naranja); color: #fff; }
.hero.hero-orange h1 { color: #fff; }
.hero.hero-orange h1 .orange { color: var(--negro); }
.hero.hero-orange .sub { color: rgba(255,255,255,.92); }
.hero.hero-orange .trust .item { color: #fff; }
.hero.hero-orange .trust .item .check { background: #fff; color: var(--naranja); }
/* Scope button overrides to LEFT-side CTAs only — hero-card buttons keep default orange */
.hero.hero-orange .cta-row .btn-primary { background: var(--negro); color: #fff; box-shadow: 0 6px 0 rgba(0,0,0,.4); }
.hero.hero-orange .cta-row .btn-primary:hover { background: var(--negro-soft); color: #fff; box-shadow: 0 6px 0 rgba(0,0,0,.5); transform: translateY(-1px); }
.hero.hero-orange .cta-row .btn-ghost { color: #fff; border-color: #fff; background: rgba(255,255,255,.12); backdrop-filter: blur(2px); }
.hero.hero-orange .cta-row .btn-ghost:hover { background: #fff; color: var(--negro); }
.hero.hero-orange .ribbon-oferton { background: var(--negro); color: #fff; }
.hero.hero-orange .envio-gratis { background: #fff; color: var(--verde); }
.hero.hero-orange .envio-gratis::before { background: var(--verde); box-shadow: 0 0 0 3px rgba(31,138,91,.25); }
/* Reset color inside hero-card (white card) so text is visible */
.hero.hero-orange .hero-card { color: var(--negro); }
.hero.hero-orange .hero-card .from { color: var(--gris-texto); }

/* Versus comparison (saco vs contenedor) on home */
.versus-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.versus-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

/* (Mobile decorative sack removed — was overlapping the H1) */

/* Trademark mark — keep ® small and well-positioned next to brand */
sup { font-size: .55em; vertical-align: super; line-height: 0; margin-left: 1px; font-weight: 700; }
.versus-label sup, footer .bottom sup { font-size: .65em; }
h3 sup, h2 sup { font-size: .45em; vertical-align: super; }
.versus-img {
  margin: -32px -32px 22px;
  background: var(--gris-claro);
  aspect-ratio: 16/10;
  overflow: hidden;
}
.versus-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.versus-loser .versus-img img { filter: grayscale(.3) contrast(.95); }
.versus-loser {
  background: #fff;
  border: 2px solid var(--gris-medio);
  opacity: .92;
}
.versus-winner {
  background: var(--negro);
  color: #fff;
  box-shadow: 0 20px 50px rgba(242,101,34,.18);
}
.versus-rec {
  position: absolute;
  top: 16px;
  right: 16px;
}
.versus-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gris-texto);
  margin-bottom: 8px;
}
.versus-winner .versus-label { color: var(--naranja); }
.versus-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 22px;
  letter-spacing: -.02em;
}
.versus-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.versus-list li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  line-height: 1.4;
}
.versus-list .check {
  color: var(--verde);
  font-weight: 800;
  flex-shrink: 0;
  font-size: 18px;
}
.versus-list .cross {
  color: var(--rojo-oferta);
  font-weight: 800;
  flex-shrink: 0;
  font-size: 18px;
}
.versus-winner .versus-list .check { color: #4ADE80; }
.versus-cta {
  width: 100%;
  margin-top: 24px;
}
.versus-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--naranja);
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(242,101,34,.4);
  letter-spacing: .04em;
}
@media (max-width: 760px) {
  .versus-grid { grid-template-columns: 1fr; gap: 12px; }
  .versus-badge {
    width: 48px; height: 48px; font-size: 16px;
    margin: -8px auto;
    z-index: 2;
    position: relative;
  }
  .versus-card { padding: 22px; }
  .versus-img { margin: -22px -22px 16px; }
  .versus-price { font-size: 32px; }
}

/* Hero card image: edge-to-edge with responsive bleed */
.hero-card-img {
  margin: -28px -28px 18px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
@media (max-width: 760px) {
  .hero-card-img { margin: -22px -22px 16px; }
}

/* Cursor spotlight effect on orange hero (boosted visibility) */
.hero.hero-orange { position: relative; }
.hero.hero-orange .container { position: relative; z-index: 2; }
.hero.hero-orange::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255,255,255,.32) 0%,
    rgba(255,255,255,.12) 25%,
    rgba(255,255,255,0) 55%
  );
  z-index: 1;
  transition: opacity .2s ease;
  mix-blend-mode: screen;
}
@media (hover: none) {
  .hero.hero-orange::before { display: none; }
}

/* Orange hero with very subtle sack background pattern */
.hero.hero-orange { isolation: isolate; }
.hero.hero-orange::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='52' height='56' viewBox='0 0 52 56'><g fill='none' stroke='%23ffffff' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'><path d='M14 18 Q14 10 18 10 Q22 10 22 18'/><path d='M30 18 Q30 10 34 10 Q38 10 38 18'/><path d='M6 18 L46 18 L46 44 Q46 50 40 50 L12 50 Q6 50 6 44 Z'/></g></svg>");
  background-size: 80px 86px;
  background-repeat: repeat;
  opacity: .09;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 760px) {
  .hero.hero-orange::after { background-size: 60px 65px; opacity: .08; }
}

.hero .container { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.hero h1 { margin-bottom: 24px; }
.hero h1 .orange { color: var(--naranja); }
.hero .sub { color: var(--gris-texto); font-size: 19px; margin-bottom: 32px; max-width: 540px; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero .trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hero .trust .item { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; }
.hero .trust .item .check {
  width: 22px; height: 22px; border-radius: 50%; background: var(--naranja);
  color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 13px;
}

.hero-card {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px; position: relative;
}
.hero-card .ribbon {
  position: absolute; top: -16px; right: 24px;
}
.hero-card .price-top { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.hero-card .from { font-weight: 600; color: var(--gris-texto); }
.hero-card .price { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 72px; line-height: 1; color: var(--negro); letter-spacing: -0.04em; }
.hero-card .currency { font-size: 32px; font-weight: 700; color: var(--negro); }
.hero-card h3 { margin-bottom: 18px; font-size: 26px; }
.hero-card .features { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 10px; }
.hero-card .features li { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.hero-card .features li::before {
  content: "✓"; color: var(--naranja); font-weight: 800;
  width: 22px; height: 22px; background: var(--naranja-soft); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; font-size: 13px;
}

/* ------- PLACEHOLDER IMG ------- */
.ph {
  display: flex; align-items: center; justify-content: center;
  background:
    repeating-linear-gradient(135deg, #efefef 0 12px, #e6e6e6 12px 24px);
  color: #7a7a7a; font-family: ui-monospace, Menlo, monospace; font-size: 12px;
  border-radius: var(--radius);
  text-align: center; padding: 16px;
}
.ph.dark {
  background:
    repeating-linear-gradient(135deg, #2a2a2a 0 12px, #232323 12px 24px);
  color: #888;
}
.ph.orange {
  background:
    repeating-linear-gradient(135deg, #f9a070 0 12px, #f6925b 12px 24px);
  color: #fff;
}

/* ------- PRODUCT CARDS / PRICING ------- */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  align-items: stretch;
}
.price-card {
  background: #fff; border: 2px solid var(--gris-medio);
  border-radius: var(--radius-lg);
  padding: 32px 28px; position: relative;
  display: flex; flex-direction: column;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.price-card:hover { transform: translateY(-4px); border-color: var(--negro); box-shadow: var(--shadow); }
.price-card.featured {
  border-color: var(--naranja);
  background: #fff;
  box-shadow: 0 20px 50px rgba(242,101,34,.15);
  transform: translateY(-8px);
}
.price-card.featured:hover { transform: translateY(-10px); }
.price-card .tag-top {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
}
.price-card .qty {
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 800;
  font-size: 28px; letter-spacing: -0.02em;
}
.price-card .qty .num { color: var(--naranja); }
.price-card .desc { color: var(--gris-texto); font-size: 14px; margin: 4px 0 18px; }
.price-card .price {
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 800;
  font-size: 56px; line-height: 1; letter-spacing: -0.04em;
}
.price-card .price .cent { font-size: 24px; vertical-align: top; margin-left: 2px; }
.price-card .price .eur { font-size: 28px; vertical-align: top; margin-left: 4px; }
.price-card .per-unit { color: var(--gris-texto); font-size: 13px; margin-top: 2px; }
.price-card .save {
  margin-top: 12px; display: inline-flex; align-items: center; gap: 6px;
  background: var(--amarillo-oferta); color: var(--negro);
  padding: 6px 10px; border-radius: 6px; font-weight: 800; font-size: 13px;
}
.price-card .visual {
  aspect-ratio: 16/10; margin: 22px 0;
  border-radius: var(--radius);
  background: var(--naranja-soft);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.price-card .features {
  list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 8px;
  font-size: 14px;
}
.price-card .features li { display: flex; gap: 8px; align-items: flex-start; }
.price-card .features li::before { content: "✓"; color: var(--naranja); font-weight: 800; }
.price-card .btn { width: 100%; }

/* Sack illustration */
.sack {
  width: 70%; aspect-ratio: 1/1.1;
  background:
    radial-gradient(ellipse 80% 25% at 50% 6%, #1e1e1e 0 60%, transparent 61%),
    linear-gradient(180deg, #fefcf9 0%, #efe9df 100%);
  background-size: 100% 100%;
  border-radius: 14px 14px 32px 32px / 22px 22px 36px 36px;
  position: relative;
  box-shadow: inset 0 -16px 30px rgba(0,0,0,.06), 0 12px 24px rgba(0,0,0,.06);
}
.sack::before, .sack::after {
  content: ""; position: absolute; top: 4%; width: 22%; height: 18%;
  border: 6px solid var(--naranja); border-bottom: none; border-radius: 50% 50% 0 0;
  background: transparent;
}
.sack::before { left: 12%; }
.sack::after { right: 12%; }
.sack .label {
  position: absolute; left: 12%; right: 12%; top: 40%;
  text-align: center;
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 800;
  color: var(--negro); font-size: 22px; letter-spacing: -0.02em;
}
.sack .label small {
  display: block; color: var(--naranja); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px;
}
.sack-trio { display: flex; justify-content: center; gap: 6px; width: 100%; height: 100%; align-items: flex-end; padding: 16px; }
.sack-trio .sack { width: 30%; }
.sack-duo { display: flex; justify-content: center; gap: 8px; width: 100%; height: 100%; align-items: flex-end; padding: 16px; }
.sack-duo .sack { width: 38%; }

/* ------- CÓMO FUNCIONA ------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  background: #fff; border: 1px solid var(--gris-medio);
  border-radius: var(--radius-lg); padding: 28px;
  position: relative; transition: all .15s ease;
}
.step:hover { border-color: var(--naranja); transform: translateY(-4px); }
.step .num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--negro); color: var(--naranja);
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step h3 { font-size: 22px; margin-bottom: 10px; }
.step p { color: var(--gris-texto); font-size: 15px; }
.step .arrow {
  position: absolute; top: 50%; right: -18px; transform: translateY(-50%);
  color: var(--naranja); font-size: 30px; font-weight: 800;
}

/* ------- ZONAS ------- */
.zones-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.zone-card {
  background: #fff; border: 1px solid var(--gris-medio); border-radius: var(--radius-lg);
  padding: 26px; transition: all .15s ease;
}
.zone-card:hover { border-color: var(--naranja); transform: translateY(-3px); box-shadow: var(--shadow); }
.zone-card .head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.zone-card h3 { font-size: 22px; }
.zone-card .count {
  background: var(--naranja-soft); color: var(--naranja-dark);
  padding: 4px 10px; border-radius: 999px; font-weight: 700; font-size: 12px;
}
.zone-card ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 12px; }
.zone-card ul li {
  font-size: 14px; color: var(--negro-soft);
  display: flex; align-items: center; gap: 6px;
}
.zone-card ul li::before { content: "›"; color: var(--naranja); font-weight: 800; }
.zone-card ul li a:hover { color: var(--naranja); }

/* ------- FAQ ------- */
.faq { max-width: 880px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--gris-medio); padding: 22px 0;
}
.faq summary {
  font-weight: 700; font-size: 19px; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--naranja); font-size: 28px; font-weight: 400; transition: transform .2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--gris-texto); margin-top: 12px; font-size: 16px; }

/* ------- TESTIMONIOS ------- */
.tests { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.test {
  background: #fff; border-radius: var(--radius-lg);
  padding: 30px; border: 1px solid var(--gris-medio);
}
.test .stars { color: var(--naranja); font-size: 18px; margin-bottom: 12px; }
.test blockquote { font-size: 17px; margin: 0 0 18px; }
.test .who { display: flex; align-items: center; gap: 12px; }
.test .who .avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--naranja-soft); color: var(--naranja-dark);
  display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.test .who .name { font-weight: 700; font-size: 14px; }
.test .who .role { color: var(--gris-texto); font-size: 13px; }

/* ------- CTA STRIP ------- */
.cta-strip {
  background: var(--naranja); color: #fff;
  position: relative; overflow: hidden;
}
.cta-strip .container { display: grid; grid-template-columns: 1.4fr auto; gap: 24px; align-items: center; }
.cta-strip h2 { color: #fff; }
.cta-strip p { opacity: .9; font-size: 18px; margin-top: 10px; }
.cta-strip .ofbig {
  position: absolute; right: -40px; bottom: -60px;
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 800;
  font-size: 320px; opacity: .07; line-height: 1; pointer-events: none;
}

/* ------- FOOTER ------- */
footer {
  background: var(--negro); color: #fff; padding: 70px 0 30px;
}
footer .grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid #333;
}
footer h4 { color: #fff; font-size: 16px; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.08em; }
footer .col p, footer .col li { color: #aaa; font-size: 14px; }
footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
footer ul a:hover { color: var(--naranja); }
footer .logo .saco { color: #fff; }
footer .logo small { color: #888; }
footer .bottom { display: flex; justify-content: space-between; padding-top: 24px; color: #888; font-size: 13px; flex-wrap: wrap; gap: 12px; }

/* ------- PAGE HEADERS ------- */
.page-head {
  background: var(--gris-claro);
  padding: 24px 0 24px;
  border-bottom: 1px solid var(--gris-medio);
}
.page-head .crumbs { color: var(--gris-texto); font-size: 13px; margin-bottom: 8px; }
.page-head .crumbs a:hover { color: var(--naranja); }
.page-head h1 { font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 6px; }
.page-head p { color: var(--gris-texto); font-size: 15px; max-width: 720px; margin: 0; }

/* ------- PRODUCT (comprar) ------- */
.product { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: start; }
.product .product-left { display: flex; flex-direction: column; gap: 20px; }
.product .gallery { background: var(--gris-claro); border-radius: var(--radius-lg); padding: 24px; display: flex; align-items: center; justify-content: center; position: relative; }
.product .product-trust { display: flex; flex-direction: column; gap: 12px; }
.product .gallery .ribbon { position: absolute; top: 20px; left: 20px; }
.product .gallery .envio { position: absolute; top: 20px; right: 20px; }
.product .info h1 { font-size: 44px; margin-bottom: 8px; }
.product .info .subtitle { color: var(--gris-texto); font-size: 17px; margin-bottom: 16px; }
.product .ratings { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.product .ratings .stars { color: var(--naranja); }
.product .ratings .count { color: var(--gris-texto); font-size: 14px; }

.qty-selector { display: grid; gap: 12px; margin-bottom: 24px; }
.qty-option {
  display: grid; grid-template-columns: 32px 1fr auto; align-items: center; gap: 16px;
  border: 2px solid var(--gris-medio); border-radius: var(--radius);
  padding: 18px 20px; cursor: pointer; transition: all .15s ease;
  background: #fff;
}
.qty-option:hover { border-color: var(--negro); }
.qty-option.selected { border-color: var(--naranja); background: var(--naranja-soft); }
.qty-option .radio {
  width: 22px; height: 22px; border: 2px solid var(--gris-medio); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.qty-option.selected .radio { border-color: var(--naranja); }
.qty-option.selected .radio::after { content: ""; width: 12px; height: 12px; background: var(--naranja); border-radius: 50%; }
.qty-option .label-name { font-weight: 700; font-size: 17px; }
.qty-option .label-desc { color: var(--gris-texto); font-size: 13px; }
.qty-option .price-row { text-align: right; }
.qty-option .price-row .p { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 24px; }
.qty-option .price-row .save { color: var(--verde); font-weight: 800; font-size: 12px; }
.qty-option .recommend {
  background: var(--amarillo-oferta); color: var(--negro);
  font-size: 11px; font-weight: 800; padding: 4px 8px; border-radius: 4px;
  letter-spacing: 0.08em; text-transform: uppercase;
  display: inline-block; margin-left: 8px;
}

.product .perks { display: grid; gap: 12px; margin-top: 24px; }
.product .perks .perk { display: flex; gap: 12px; align-items: center; font-size: 15px; }
.product .perks .perk .ic {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--naranja-soft); color: var(--naranja-dark);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}

/* ------- CONTACT FORM ------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; }
.form { background: #fff; border: 1px solid var(--gris-medio); border-radius: var(--radius-lg); padding: 32px; }
.form .row { display: grid; gap: 18px; margin-bottom: 18px; }
.form .row.cols2 { grid-template-columns: 1fr 1fr; }
.form label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--negro-soft); margin-bottom: 6px; display: block; }
.form input, .form select, .form textarea {
  width: 100%; font-family: inherit; font-size: 16px;
  padding: 14px 16px; border-radius: var(--radius); border: 1.5px solid var(--gris-medio);
  background: #fff; transition: border-color .15s ease;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--naranja);
}
.form textarea { min-height: 120px; resize: vertical; }
.contact-info .item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-info .ic {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--naranja); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
}
.contact-info h4 { font-size: 18px; margin-bottom: 4px; }
.contact-info p { color: var(--gris-texto); }

/* ------- SEO CITY PAGE ------- */
.city-hero {
  background: linear-gradient(180deg, var(--gris-claro) 0%, #fff 100%);
  padding: 64px 0;
}
.city-hero .grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
.city-hero .crumbs { color: var(--gris-texto); font-size: 14px; margin-bottom: 14px; }
.city-hero h1 { font-size: clamp(34px, 4.5vw, 54px); margin-bottom: 18px; }
.city-hero h1 .city { color: var(--naranja); }
.city-hero p { color: var(--gris-texto); font-size: 18px; margin-bottom: 26px; max-width: 560px; }
.city-hero .stats { display: flex; gap: 28px; margin-top: 28px; flex-wrap: wrap; }
.city-hero .stat .num { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 36px; color: var(--negro); }
.city-hero .stat .lbl { color: var(--gris-texto); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; }

.local-info { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.local-info .card {
  background: var(--gris-claro); border-radius: var(--radius-lg); padding: 28px;
}
.local-info .card h3 { margin-bottom: 12px; }

.neighborhoods { display: flex; flex-wrap: wrap; gap: 10px; }
.neighborhoods .chip {
  background: #fff; border: 1px solid var(--gris-medio);
  padding: 8px 14px; border-radius: 999px; font-size: 14px; font-weight: 600;
}

.partners-cta {
  background: var(--negro); color: #fff; border-radius: var(--radius-lg);
  padding: 48px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center;
}
.partners-cta h2 { color: #fff; }
.partners-cta p { opacity: .8; margin-top: 12px; }

/* ------- ABOUT ------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.value-card {
  background: var(--gris-claro); border-radius: var(--radius-lg); padding: 28px;
  border-top: 4px solid var(--naranja);
}
.value-card h3 { font-size: 20px; margin-bottom: 10px; }
.value-card p { color: var(--gris-texto); font-size: 15px; }
.value-card .num {
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; color: var(--naranja);
  font-size: 14px; letter-spacing: 0.1em;
}
.timeline { display: grid; gap: 24px; }
.timeline .tl { display: grid; grid-template-columns: 100px 1fr; gap: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--gris-medio); }
.timeline .tl:last-child { border-bottom: none; }
.timeline .tl .year { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; color: var(--naranja); font-size: 28px; }
.timeline .tl h4 { font-size: 18px; margin-bottom: 4px; }
.timeline .tl p { color: var(--gris-texto); font-size: 15px; }

/* ------- HOW WORKS DETAIL ------- */
.flow {
  display: grid; gap: 40px;
}
.flow-step {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center;
}
.flow-step.reverse { grid-template-columns: 1.2fr 1fr; }
.flow-step.reverse .text { order: 2; }
.flow-step .num-big {
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 800;
  font-size: 18px; color: var(--naranja); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 12px;
}
.flow-step .visual {
  background: var(--gris-claro); border-radius: var(--radius-lg);
  aspect-ratio: 4/3; padding: 32px;
  display: flex; align-items: center; justify-content: center;
}
.flow-step h2 { margin-bottom: 16px; font-size: 36px; }
.flow-step p { font-size: 17px; color: var(--gris-texto); margin-bottom: 16px; }
.flow-step ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.flow-step ul li { display: flex; gap: 10px; align-items: flex-start; }
.flow-step ul li::before { content: "✓"; color: var(--naranja); font-weight: 800; }

/* ------- RESPONSIVE ------- */
@media (max-width: 980px) {
  .hero .container,
  .city-hero .grid,
  .product,
  .contact-grid,
  .about-grid,
  .partners-cta,
  .flow-step, .flow-step.reverse,
  .cta-strip .container { grid-template-columns: 1fr; }
  .flow-step.reverse .text { order: 0; }
  .pricing-grid, .zones-grid, .tests, .local-info { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step .arrow { display: none; }
  footer .grid { grid-template-columns: 1fr 1fr; }
  nav.nav .links { display: none; }
}
@media (max-width: 600px) {
  section { padding: 56px 0; }
  .form .row.cols2 { grid-template-columns: 1fr; }
  footer .grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  h1 { font-size: 40px !important; }
}

/* ------- ICONS (Lucide) ------- */
.ico {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.15em;
  stroke-width: 2;
  flex-shrink: 0;
}
.ico-sm { width: .85em; height: .85em; }
.ico-lg { width: 1.4em; height: 1.4em; }
.ico-xl { width: 1.8em; height: 1.8em; }
.ico-2xl { width: 2.4em; height: 2.4em; }
/* Bigger icons in dedicated badge/circle containers */
.perks .perk .ic .ico { width: 1.1em; height: 1.1em; }
.topbar a .ico { width: .9em; height: .9em; vertical-align: -0.1em; }

/* ------- MOBILE MENU TOGGLE ------- */
.menu-toggle {
  display: none;
  background: var(--gris-claro);
  border: 1px solid var(--gris-medio);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--negro);
  align-items: center;
  justify-content: center;
  transition: all .15s ease;
}
.menu-toggle:hover {
  border-color: var(--naranja);
  color: var(--naranja);
}
.menu-toggle .ico {
  width: 22px;
  height: 22px;
  vertical-align: middle;
}

/* ------- RESPONSIVE (mobile pass) ------- */
@media (max-width: 980px) {
  html, body { overflow-x: hidden; }
  img, iframe { max-width: 100%; height: auto; }

  /* Topbar tighter */
  .topbar { font-size: 12px; padding: 8px 0; }
  .topbar .container { gap: 10px; }
  .topbar .left { gap: 10px; }
  .topbar .right { gap: 12px; }

  /* Nav: show toggle, collapse links to dropdown */
  nav.nav .container { flex-wrap: wrap; gap: 12px; row-gap: 0; }
  nav.nav .logo img { height: 44px !important; }
  .menu-toggle { display: inline-flex; }

  nav.nav .links {
    display: none;
    flex-direction: column;
    width: 100%;
    order: 99;
    gap: 0;
    padding: 8px 0 4px;
    margin-top: 8px;
    border-top: 1px solid var(--gris-medio);
  }
  nav.nav.menu-open .links { display: flex; }
  nav.nav .links a { padding: 12px 0; font-size: 16px; }
  nav.nav .links a.active::after { display: none; }
  nav.nav .cta-row { margin-left: auto; }
  nav.nav .cta-row .btn { padding: 8px 14px; font-size: 13px; }

  /* Product gallery: drop the 520px min-height on mobile */
  .product .gallery { min-height: auto; padding: 24px; }
  .product .info h1 { font-size: 32px; }

  /* Hero tighter */
  .hero { padding: 48px 0 60px; }
  .hero .cta-row { gap: 10px; }
  .hero .trust { gap: 14px; }
  .hero-card .price { font-size: 56px; }

  /* Page head smaller */
  .page-head { padding: 20px 0; }
}

@media (max-width: 760px) {
  .container { padding: 0 16px; }

  /* Topbar: hide secondary items, keep envío gratis only */
  .topbar .left span:nth-child(2),
  .topbar .left span:nth-child(3) { display: none; }

  /* Collapse all inline 2-col / 3-col / 4-col grids */
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 2fr"],
  [style*="grid-template-columns: 1.1fr 1fr"],
  [style*="grid-template-columns: 1.3fr 1fr"],
  [style*="grid-template-columns: 1.4fr 1fr"],
  [style*="grid-template-columns: 1.4fr auto"],
  [style*="grid-template-columns: 1fr auto"],
  [style*="grid-template-columns: 1fr 1.6fr"],
  [style*="grid-template-columns: 1fr 1.1fr"],
  [style*="grid-template-columns: 100px 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  /* steps-8 grid (como-funciona) */
  .steps-8 { grid-template-columns: 1fr !important; }

  /* Hero card price smaller */
  .hero-card .price { font-size: 48px; }
  .hero-card { padding: 22px; }

  /* CTA strip stack */
  .cta-strip .container { padding: 0 16px; }

  /* Partners-cta and big padded blocks: less padding */
  .partners-cta { padding: 32px !important; }
  [style*="padding: 64px"] { padding: 32px !important; }
  [style*="padding: 48px"] { padding: 28px !important; }

  /* Tighter section padding overall on mobile (overrides inline) */
  section { padding-top: 40px !important; padding-bottom: 40px !important; }
  section.tight { padding-top: 18px !important; padding-bottom: 18px !important; }
  .section-title { margin-bottom: 28px; }
  .section-title p { font-size: 16px; }
  .page-head { padding: 16px 0; }

  /* Hero text block: aggressive compression so the hero-card photo lands above-the-fold */
  .hero { padding: 20px 0 28px !important; }
  .hero h1 { font-size: clamp(26px, 7vw, 32px); margin-bottom: 12px; line-height: 1.1; }
  .hero .sub { font-size: 15px; margin-bottom: 16px; max-width: 100%; line-height: 1.45; }
  .hero .cta-row { gap: 8px; margin-bottom: 16px; }
  .hero .cta-row .btn { padding: 13px 18px; font-size: 14px; }
  .hero .trust { gap: 6px 12px; flex-direction: row; flex-wrap: wrap; }
  .hero .trust .item { font-size: 12px; gap: 6px; }
  .hero .trust .item .check { width: 18px; height: 18px; font-size: 11px; }
  /* Ribbons row: less margin so H1 lands faster */
  .hero > .container > div:first-child > div:first-child { margin-bottom: 14px !important; }
  /* Hero-card slightly tighter (untouched in structure, just compact spacing) */
  .hero-card { padding: 22px; }
  .hero-card .price { font-size: 48px; }
  .hero-card h3 { font-size: 22px; margin-bottom: 12px; }
  .hero-card .features { gap: 8px; margin-bottom: 16px; }
  .hero-card .features li { font-size: 14px; }

  /* Tighten proof strip vertical gap when stacked */
  section.tight > .container { gap: 12px; }
  section.tight > .container > div { gap: 14px !important; }
  section.tight > .container > div > span { font-size: 16px; }

  /* H2 smaller on mobile */
  h2 { font-size: clamp(24px, 5.5vw, 30px) !important; }
  h3 { font-size: 20px !important; }

  /* Bandeau marque image smaller */
  [style*="01 Home — Marca"] img,
  [data-screen-label="01 Home — Marca"] img { max-width: 100% !important; }

  /* Footer tighter spacing on mobile */
  footer { padding: 40px 0 24px; }
  footer .grid { padding-bottom: 28px; gap: 28px; }

  /* Pueblos lists: 2-col on mobile (compact instead of 1-col stacked) */
  [style*="grid-template-columns: repeat(3"]:has(> .zone-link),
  [style*="grid-template-columns: repeat(3"]:has(> span.zone-link),
  [style*="grid-template-columns: repeat(4"]:has(> .zone-link),
  [style*="grid-template-columns: repeat(4"]:has(> .zone-link-mini) {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
  .zone-link, .zone-link-mini {
    padding: 10px 12px !important;
    font-size: 13px !important;
    min-height: 0;
  }

  /* iframe Maps: 4/3 instead of 1/1 on mobile (less empty space) */
  [style*="aspect-ratio: 1/1"] { aspect-ratio: 4/3 !important; }

  /* Disable sticky positioning on mobile (text would stick while pueblos scroll) */
  [style*="position: sticky"] { position: static !important; }

  /* Input groups with min-width inline: full width on mobile */
  input[style*="min-width: 280px"],
  input[style*="min-width:280px"] {
    min-width: 0 !important;
    width: 100% !important;
    flex: 1 1 100%;
  }
}

/* Header refinement: clean 2-element mobile header, CTA in burger menu */
@media (max-width: 980px) {
  nav.nav .container { justify-content: space-between; align-items: center; }
  nav.nav .logo img { height: 36px !important; }
  nav.nav .cta-row { display: none; }
  nav.nav.menu-open .cta-row {
    display: flex;
    width: 100%;
    order: 100;
    padding: 12px 0 4px;
    margin-top: 4px;
    border-top: 1px solid var(--gris-medio);
  }
  nav.nav.menu-open .cta-row .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .zone-link, .zone-link-mini {
    padding: 8px 10px !important;
    font-size: 12px !important;
  }
}

/* === Targeted fixes (after mobile QA feedback) === */

/* Ensure ribbons stay on top of the sack illustration */
.product .gallery > .ribbon,
.product .gallery > .envio { z-index: 2; }
.product .gallery #gallery-visual { position: relative; z-index: 1; }

/* Consent checkbox labels: NOT styled like field labels (no uppercase/bold) */
.form label.consent,
.form label:has(> input[type="checkbox"]) {
  display: flex !important;
  gap: 10px;
  align-items: flex-start !important;
  margin-bottom: 18px;
  font-size: 13px !important;
  color: var(--gris-texto) !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  width: 100%;
  line-height: 1.4;
}
.form label.consent input[type="checkbox"],
.form label:has(> input[type="checkbox"]) input[type="checkbox"] {
  flex-shrink: 0;
  margin: 0;
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--naranja);
}
.form label.consent span {
  flex: 1 1 auto;
  min-width: 0;
}

@media (max-width: 980px) {
  /* Logo: bigger on mobile so it doesn't look squashed against the burger */
  nav.nav .logo img { height: 44px !important; width: auto !important; }
  .menu-toggle { padding: 6px 8px; }
  .menu-toggle .ico { width: 20px; height: 20px; }
}

@media (max-width: 760px) {
  /* Specs grid (4 specs in 2x2 with gap 20px 32px) stays 2-col on mobile */
  [style*="gap: 20px 32px"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 14px 18px !important;
  }
  /* iframe Maps shorter on mobile: 3/2 landscape */
  [style*="aspect-ratio: 1/1"] { aspect-ratio: 3/2 !important; }

  /* Product gallery on mobile: grid layout — ribbons on row 1, image on row 2 (no overlap) */
  .product .gallery {
    display: grid !important;
    grid-template-columns: auto 1fr;
    grid-template-areas: "ribbon envio" "img img";
    padding: 16px !important;
    min-height: auto !important;
    position: static !important;
    gap: 12px 8px;
    align-items: center;
  }
  .product .gallery .ribbon {
    grid-area: ribbon;
    position: static !important;
    justify-self: start;
  }
  .product .gallery .envio {
    grid-area: envio;
    position: static !important;
    justify-self: end;
  }
  .product .gallery #gallery-visual {
    grid-area: img;
    max-width: 100% !important;
    width: 100%;
  }

  /* Mobile: unwrap product-left, order info before trust */
  .product { display: flex !important; flex-direction: column; gap: 24px; }
  .product .product-left { display: contents; }
  .product .gallery { order: 1; }
  .product .info { order: 2; }
  .product .product-trust { order: 3; }

  /* Add 1fr 1.4fr to mobile collapse patterns */
  [style*="grid-template-columns: 1fr 1.4fr"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Perks grid stays 2-col on mobile (compact 6-perk display) */
  [style*="grid-template-columns: 1fr 1fr"]:has(> .perk) {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 30px !important; }
  h2 { font-size: 24px !important; }

  /* Hide topbar phone CTA on smallest screen */
  .topbar .right a:first-child { display: none; }

  /* Pricing card price smaller */
  .price-card .price { font-size: 42px; }

  /* Hero-card simpler */
  .hero-card .price { font-size: 44px; }
  .hero-card h3 { font-size: 22px; }

  /* Stack the dark total card in comprar.html */
  [style*="grid-template-columns: 1fr auto"] {
    grid-template-columns: 1fr !important;
  }
}
