/* ===========================================================
   OkWash · Estilos
   Paleta: amarillo #FFD400 · azul #0E2DDB · magenta #EC1F8E
   Tipografía: Anton (display) + Manrope (body)
   =========================================================== */

:root {
  --yellow: #FFD400;
  --yellow-soft: #FFE76A;
  --blue: #0E2DDB;
  --blue-deep: #061BAA;
  --blue-light: #2A4DFF;
  --pink: #EC1F8E;
  --pink-soft: #FF5BB1;
  --ink: #0A0F2C;
  --gray-900: #1A1F3A;
  --gray-700: #4A5275;
  --gray-500: #7A82A1;
  --gray-200: #E5E8F2;
  --gray-100: #F2F4FB;
  --white: #ffffff;

  --radius: 18px;
  --radius-lg: 28px;
  --container: 1200px;
  --shadow-sm: 0 4px 14px rgba(14,45,219,.08);
  --shadow-md: 0 12px 40px rgba(14,45,219,.14);
  --shadow-lg: 0 24px 70px rgba(14,45,219,.22);

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* ============ KICKERS / TÍTULOS ============ */
.kicker {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--yellow);
  background: rgba(255,212,0,.12);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,212,0,.3);
}
.kicker--dark {
  color: var(--blue);
  background: rgba(14,45,219,.06);
  border-color: rgba(14,45,219,.2);
}

.section__head { text-align: center; margin-bottom: 60px; }
.section__title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(38px, 6vw, 72px);
  line-height: .95;
  letter-spacing: .01em;
  margin: 16px 0 14px;
  text-transform: uppercase;
  color: var(--ink);
}
.section__title--light { color: var(--white); }
.section__sub {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255,255,255,.75);
  font-size: 17px;
}
.text-blue { color: var(--blue); }
.text-pink { color: var(--pink); }
.text-yellow { color: var(--yellow); }

/* ============ BOTONES ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  transition: all .25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn--accent {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 8px 0 var(--blue-deep), 0 14px 30px rgba(255,212,0,.35);
}
.btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 0 var(--blue-deep), 0 18px 36px rgba(255,212,0,.45);
}
.btn--accent:active {
  transform: translateY(4px);
  box-shadow: 0 4px 0 var(--blue-deep), 0 6px 18px rgba(255,212,0,.3);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn--lg { padding: 18px 32px; font-size: 16px; }
.btn--small { padding: 10px 18px; font-size: 14px; }

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(14,45,219,.06);
  transition: transform .35s var(--ease), background .25s var(--ease);
}
.header--hidden { transform: translateY(-100%); }
.header--scrolled {
  background: rgba(255,255,255,.95);
  box-shadow: 0 4px 20px rgba(14,45,219,.06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header__logo img {
  height: 44px;
  width: auto;
  transition: transform .3s var(--ease);
}
.header__logo:hover img { transform: rotate(-3deg) scale(1.05); }

.nav { display: flex; gap: 32px; }
.nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--gray-700);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav a:hover { color: var(--blue); }
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width .3s var(--ease);
}
.nav a:hover::after { width: 100%; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  transition: all .3s var(--ease);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 50%, var(--blue-light) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 140px 0 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,212,0,.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(236,31,142,.18) 0%, transparent 45%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.6), rgba(255,255,255,.1));
  filter: blur(.5px);
  animation: float 14s ease-in-out infinite;
}
.bubble--1 { width: 80px; height: 80px; top: 15%; left: 10%; animation-delay: 0s; }
.bubble--2 { width: 50px; height: 50px; top: 60%; left: 5%; animation-delay: 2s; }
.bubble--3 { width: 120px; height: 120px; top: 20%; right: 8%; animation-delay: 4s; opacity: .5; }
.bubble--4 { width: 30px; height: 30px; top: 75%; right: 15%; animation-delay: 6s; }
.bubble--5 { width: 60px; height: 60px; top: 40%; right: 35%; animation-delay: 8s; opacity: .6; }
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0) scale(1); }
  33% { transform: translateY(-30px) translateX(10px) scale(1.05); }
  66% { transform: translateY(20px) translateX(-15px) scale(.95); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero__content { animation: heroSlide .8s var(--ease) both; }
@keyframes heroSlide {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(54px, 9vw, 124px);
  line-height: .9;
  letter-spacing: .005em;
  margin: 22px 0 28px;
  text-transform: uppercase;
}
.hero__word {
  display: block;
  animation: wordIn .9s var(--ease) both;
}
.hero__word--yellow { color: var(--yellow); animation-delay: .1s; }
.hero__word--white { color: var(--white); animation-delay: .25s; }
.hero__word--pink { color: var(--pink-soft); animation-delay: .4s; }
@keyframes wordIn {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero__lead {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,.85);
  margin: 0 0 36px;
  max-width: 540px;
  animation: heroSlide .8s var(--ease) .55s both;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 38px;
  animation: heroSlide .8s var(--ease) .7s both;
}

.hero__bullets {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  animation: heroSlide .8s var(--ease) .85s both;
}
.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}
.hero__bullets span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

/* Visual del hero */
.hero__visual {
  position: relative;
  animation: heroSlide 1s var(--ease) .3s both;
}
.hero__card {
  position: relative;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
}
.hero__price-tag {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__price-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--yellow);
}
.hero__price {
  font-family: 'Anton', sans-serif;
  font-size: 90px;
  line-height: 1;
  color: var(--white);
}
.hero__price-sub {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
}
.hero__diamond {
  position: absolute;
  top: -40px;
  right: -30px;
  width: 140px; height: 140px;
  background: var(--yellow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  border-radius: 16px;
  border: 4px solid var(--white);
  box-shadow: 0 12px 40px rgba(255,212,0,.5);
  animation: diamondSpin 8s ease-in-out infinite;
}
.hero__diamond > span { transform: rotate(-45deg); }
.hero__diamond-top {
  font-size: 11px;
  font-weight: 800;
  color: var(--pink);
  margin-bottom: 2px;
  letter-spacing: .1em;
}
.hero__diamond-mid, .hero__diamond-bot {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  line-height: 1;
  color: var(--blue);
}
@keyframes diamondSpin {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(50deg) translateY(-8px); }
}

/* Marquee */
.hero__marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--yellow);
  padding: 14px 0;
  overflow: hidden;
  border-top: 3px solid var(--ink);
}
.marquee__track {
  display: flex;
  gap: 40px;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee__track span {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: .06em;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============ CÓMO FUNCIONA ============ */
.how {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}
.how::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(14,45,219,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: .5;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.step {
  position: relative;
  padding: 36px 28px 32px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all .35s var(--ease);
}
.step:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}
.step:hover .step__num { color: var(--yellow); -webkit-text-stroke: 2px var(--blue); }
.step__num {
  font-family: 'Anton', sans-serif;
  font-size: 72px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--blue);
  display: block;
  margin-bottom: 14px;
  transition: all .35s var(--ease);
}
.step h3 {
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin: 0 0 10px;
  font-weight: 400;
  color: var(--ink);
}
.step p {
  margin: 0;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.55;
}

/* ============ PRECIOS EXTERIOR ============ */
.prices {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--blue-deep), var(--blue));
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.prices::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 90% 10%, rgba(255,212,0,.08), transparent 40%);
  pointer-events: none;
}
.cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: stretch;
  position: relative;
}
.card {
  position: relative;
  padding: 30px 22px 26px;
  background: var(--white);
  border-radius: var(--radius-lg);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: all .35s var(--ease);
  border: 3px solid transparent;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.card__badge {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 5px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}
.card__badge--rapido { background: var(--blue); color: var(--white); }
.card__badge--limpio { background: var(--blue-light); color: var(--white); }
.card__badge--perfecto { background: var(--pink); color: var(--white); }
.card__badge--big { background: var(--ink); color: var(--yellow); }

.card__title {
  font-family: 'Anton', sans-serif;
  font-size: 23px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 22px 0 4px;
  color: var(--blue);
  letter-spacing: .015em;
  line-height: 1.05;
}
.card__sub {
  font-size: 13px;
  color: var(--gray-500);
  margin: 0 0 12px;
}
.card__price {
  font-family: 'Anton', sans-serif;
  font-size: 50px;
  line-height: 1;
  margin: 0 0 18px;
  color: var(--ink);
  letter-spacing: -.01em;
}
.card__currency {
  font-size: 26px;
  vertical-align: top;
  color: var(--yellow);
  -webkit-text-stroke: 1px var(--ink);
  margin-right: 2px;
}
.card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  font-size: 14px;
}
.card__list li {
  position: relative;
  padding-left: 22px;
  color: var(--gray-700);
  line-height: 1.4;
}
.card__list li::before {
  content: '★';
  position: absolute;
  left: 0; top: 1px;
  color: var(--yellow);
  font-size: 14px;
}
.card__tag {
  display: block;
  text-align: center;
  margin-top: 18px;
  padding: 10px;
  background: var(--ink);
  color: var(--yellow);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .14em;
  border-radius: 12px;
}

/* Card destacada */
.card--featured {
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: var(--white);
  transform: translateY(-12px);
  border-color: var(--yellow);
  box-shadow: 0 28px 60px rgba(0,0,0,.4);
}
.card--featured .card__title { color: var(--yellow); }
.card--featured .card__price { color: var(--white); }
.card--featured .card__currency { color: var(--yellow); -webkit-text-stroke: 1px var(--white); }
.card--featured .card__list li { color: rgba(255,255,255,.9); }
.card--featured .card__list li::before { color: var(--yellow); }
.card--featured:hover { transform: translateY(-18px); }

.card__ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--ink);
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(255,212,0,.5);
}

/* Badge "NUEVO" */
.card__nuevo {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--pink);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(236,31,142,.4);
}
.card__nuevo--dark { background: var(--pink); }

/* Card big (Super Grande) */
.card--big .card__title {
  font-size: 22px;
  margin-top: 6px;
  color: var(--ink);
}
.card__list-pricing {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.card__list-pricing li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--gray-100);
  border-radius: 10px;
  font-size: 13px;
  color: var(--gray-700);
}
.card__list-pricing strong {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  color: var(--blue);
  font-weight: 400;
}

/* ============ FULL ============ */
.full {
  padding: 120px 0;
  background: var(--gray-100);
  position: relative;
}
.full__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.full__sizes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.size {
  padding: 28px 18px;
  background: var(--white);
  border-radius: var(--radius);
  text-align: center;
  border: 2px solid var(--gray-200);
  transition: all .3s var(--ease);
}
.size:hover {
  transform: translateY(-4px);
  border-color: var(--pink);
  box-shadow: var(--shadow-md);
}
.size__icon { font-size: 36px; margin-bottom: 10px; }
.size__name {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.size__price {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  color: var(--blue);
  line-height: 1;
}

.full__details {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 2px solid var(--gray-200);
}
.full__col h3 {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 16px;
}
.full__col ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: var(--gray-700);
  font-size: 15px;
}
.full__col ul li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--pink);
  font-weight: 800;
}
.full__addon {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-soft) 100%);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.full__addon::after {
  content: '✦';
  position: absolute;
  top: -20px; right: -10px;
  font-size: 120px;
  color: rgba(0,0,0,.05);
  line-height: 1;
}
.full__addon-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink);
}
.full__addon-price {
  font-family: 'Anton', sans-serif;
  font-size: 56px;
  line-height: 1;
  color: var(--blue);
  margin: 6px 0;
}
.full__addon-extra {
  font-size: 14px;
  font-weight: 700;
  color: var(--pink);
}

/* ============ PREMIUM ============ */
.premium {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.premium::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,212,0,.15), transparent 60%);
}
.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.chip {
  padding: 14px 24px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: all .3s var(--ease);
  cursor: default;
}
.chip:hover {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
  transform: translateY(-3px);
}

/* ============ POR QUÉ ============ */
.why {
  padding: 120px 0;
  background: var(--white);
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why__item {
  padding: 36px 28px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  transition: all .35s var(--ease);
  border: 2px solid transparent;
}
.why__item:hover {
  background: var(--white);
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why__icon {
  font-size: 40px;
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.why__item h3 {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 10px;
  font-weight: 400;
}
.why__item p {
  margin: 0;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.55;
}

/* ============ UBICACIÓN ============ */
.location {
  padding: 120px 0;
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.location::before {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(236,31,142,.18), transparent 60%);
}
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: stretch;
}
.location__info {
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 38px;
  position: relative;
}
.location__info h3 {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 6px;
  color: var(--yellow);
  line-height: 1;
}
.location__address {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  margin: 0 0 32px;
}
.location__details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.detail {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  align-items: start;
}
.detail__label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--yellow);
  padding-top: 4px;
}
.detail__value {
  font-size: 15px;
  color: var(--white);
  line-height: 1.5;
}
.location__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 480px;
  border: 2px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow-lg);
}
.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  filter: hue-rotate(-10deg) saturate(.9);
}

/* ============ FOOTER ============ */
.footer {
  background: #050719;
  color: rgba(255,255,255,.7);
  padding: 60px 0 30px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__brand img { height: 80px; margin-bottom: 14px; }
.footer__brand p {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--yellow);
  letter-spacing: .04em;
  margin: 0;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer__cols h4 {
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 14px;
  letter-spacing: .04em;
  font-weight: 400;
}
.footer__cols a {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer__cols a:hover { color: var(--yellow); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============ WHATSAPP FLOTANTE ============ */
.whatsapp {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(37,211,102,.4);
  z-index: 99;
  transition: transform .25s var(--ease);
}
.whatsapp:hover { transform: scale(1.1); }
.whatsapp svg { width: 30px; height: 30px; }
.whatsapp__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 360px; margin: 0 auto; }
  .steps, .why__grid { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .card--featured { transform: none; }
  .card--featured:hover { transform: translateY(-8px); }
  .full__sizes { grid-template-columns: repeat(3, 1fr); }
  .full__details { grid-template-columns: 1fr; }
  .location__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .nav, .header__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 20px 24px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--gray-200);
  }
  .nav.is-open a {
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
  }
  .nav.is-open a:last-child { border-bottom: none; }

  .hero { padding: 110px 0 100px; min-height: auto; }
  .hero__title { font-size: 56px; }
  .hero__lead { font-size: 16px; }
  .hero__cta .btn { flex: 1; min-width: 140px; }
  .hero__bullets { gap: 12px; }
  .hero__bullets li { font-size: 13px; }

  .how, .prices, .full, .premium, .why, .location { padding: 80px 0; }
  .section__head { margin-bottom: 40px; }
  .steps, .cards, .why__grid { grid-template-columns: 1fr; }
  .full__sizes { grid-template-columns: repeat(2, 1fr); }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; text-align: center; }

  .location__info { padding: 32px 26px; }
  .location__info h3 { font-size: 28px; }
  .location__cta { flex-direction: column; }
  .location__cta .btn { width: 100%; }
  .location__map, .location__map iframe { min-height: 320px; }

  .whatsapp { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .whatsapp svg { width: 26px; height: 26px; }

  .marquee__track span { font-size: 16px; }
}

@media (max-width: 420px) {
  .hero__title { font-size: 46px; }
  .full__sizes { grid-template-columns: 1fr; }
}
