/* ─── RESET & VARIABLES ─────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream:   #F0EBE3;
  --cream-2: #E8E0D5;
  --surface: #FFFFFF;
  --charcoal:#1C1C1C;
  --char-2:  #2E2E2E;
  --char-3:  #3A3A3A;
  --taupe:   #C4B5A5;
  --taupe-d: #A09080;
  --taupe-a: rgba(196,181,165,.15);
  --muted:   #8A847C;
  --border:  #DDD5CC;
  --border-s:#EAE4DC;
  --r:       4px;
  --r-lg:    10px;
  --max-w:   1280px;
  --pad:     max(24px, calc((100vw - var(--max-w)) / 2));
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── TOPBAR ──────────────────────────────────── */
.topbar {
  background: var(--char-2);
  color: rgba(255,255,255,.5);
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .8px;
  padding: 9px var(--pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-transform: uppercase;
}
.topbar strong { color: rgba(255,255,255,.85); font-weight: 500; }
.topbar-sep { opacity: .25; }

/* ─── NAVBAR ──────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--charcoal);
  height: 70px;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.4); }

.nav-logo {
  display: flex;
  align-items: center;
  height: 58px;
  text-decoration: none;
}
.nav-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.nav-links a:hover { color: rgba(255,255,255,.9); }

.nav-cta {
  padding: 10px 24px;
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--r);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background .2s, border-color .2s, color .2s;
}
.nav-cta:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.5);
  color: white;
}

/* ─── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20,18,16,.82) 0%,
    rgba(20,18,16,.55) 55%,
    rgba(20,18,16,.18) 100%
  );
}

.hero-content {
  position: relative;
  padding: 80px var(--pad);
  max-width: calc(var(--max-w) + 48px);
  width: 100%;
}

.hero-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 24px;
  animation: fadeUp .6s ease both;
}

.hero-h1 {
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 300;
  letter-spacing: -1px;
  line-height: .97;
  color: var(--surface);
  text-transform: uppercase;
  margin-bottom: 24px;
  max-width: 680px;
  animation: fadeUp .6s .1s ease both;
}

.hero-sub {
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 300;
  color: rgba(255,255,255,.62);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 44px;
  letter-spacing: .3px;
  animation: fadeUp .6s .2s ease both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp .6s .3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--surface);
  color: var(--charcoal);
  border-radius: var(--r);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--cream); transform: translateY(-2px); }

.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--r);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background .2s, border-color .2s, color .2s;
}
.btn-ghost-hero:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.6);
  color: white;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1px solid rgba(255,255,255,.4);
  border-bottom: 1px solid rgba(255,255,255,.4);
  transform: rotate(45deg);
  animation: bounce 1.8s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(5px); }
}

/* ─── PRODUCT GRID ────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 480px;
}

.grid-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.grid-item-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s cubic-bezier(.25,.46,.45,.94);
}
.grid-item:hover .grid-item-bg { transform: scale(1.07); }

.grid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,18,16,.85) 0%,
    rgba(20,18,16,.2) 55%,
    rgba(20,18,16,.04) 100%
  );
  transition: background .3s;
}
.grid-item:hover .grid-overlay {
  background: linear-gradient(
    to top,
    rgba(20,18,16,.9) 0%,
    rgba(20,18,16,.38) 60%,
    rgba(20,18,16,.08) 100%
  );
}

/* línea decorativa izquierda en hover */
.grid-item::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--taupe);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .4s ease;
}
.grid-item:hover::after { transform: scaleY(1); }

.grid-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
}

.grid-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 8px;
}

.grid-title {
  font-size: 19px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--surface);
  margin-bottom: 7px;
}

.grid-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.58);
  line-height: 1.55;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .4s ease, opacity .35s ease;
}
.grid-item:hover .grid-desc {
  max-height: 80px;
  opacity: 1;
}

/* ─── COTIZADOR SECTION ───────────────────────── */
.cot-section {
  background: var(--surface);
  padding: 100px var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cot-kicker {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--taupe-d);
  margin-bottom: 18px;
}

.cot-h2 {
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 300;
  letter-spacing: -1px;
  line-height: 1.06;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.cot-p {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.cot-bullets { display: flex; flex-direction: column; gap: 14px; }
.cot-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.5;
}
.cot-bullet-ico {
  width: 20px;
  height: 20px;
  background: var(--taupe);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── COTIZADOR CARD ──────────────────────────── */
.cotizador-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: 0 16px 48px rgba(28,28,28,.07), 0 2px 8px rgba(28,28,28,.04);
  position: relative;
  overflow: hidden;
}
.cotizador-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--taupe);
}

.cot-card-title {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -.3px;
  margin-bottom: 4px;
}
.cot-card-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 28px;
}

.medidas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}
.field-unit { font-size: 11px; color: var(--taupe-d); font-weight: 300; text-transform: none; letter-spacing: 0; }
.field input {
  width: 100%;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus {
  border-color: var(--taupe);
  box-shadow: 0 0 0 3px rgba(196,181,165,.18);
}
.field input::placeholder { color: var(--border); font-weight: 300; }

.tela-opts { display: flex; flex-direction: column; gap: 7px; margin-bottom: 22px; }
.tela-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 15px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  cursor: pointer;
  background: var(--surface);
  transition: border-color .2s, background .2s;
}
.tela-opt:hover { border-color: var(--taupe); background: var(--cream); }
.tela-opt.sel { border-color: var(--taupe); background: var(--cream); }
.tela-opt input[type=radio] { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-dot {
  width: 17px; height: 17px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  transition: border-color .2s;
  display: flex; align-items: center; justify-content: center;
}
.tela-opt.sel .radio-dot { border-color: var(--taupe); }
.tela-opt.sel .radio-dot::after {
  content: '';
  width: 7px; height: 7px;
  background: var(--taupe);
  border-radius: 50%;
}
.tela-name { font-size: 13.5px; font-weight: 400; color: var(--charcoal); }
.tela-desc { font-size: 11.5px; font-weight: 300; color: var(--muted); margin-top: 2px; }

.precio-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px;
  margin-bottom: 18px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, border-color .3s;
}
.precio-box.activo { background: var(--cream); border-color: var(--taupe); }
.precio-hint { font-size: 13px; font-weight: 300; color: var(--muted); text-align: center; }
.precio-vals { display: none; width: 100%; }
.precio-vals.show { display: block; }
.p-row { display: flex; justify-content: space-between; align-items: baseline; }
.p-label { font-size: 12px; font-weight: 400; letter-spacing: .5px; color: var(--muted); }
.p-num { font-size: 28px; font-weight: 400; color: var(--charcoal); letter-spacing: -1px; }
.p-row-2 {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.p-row-2 .p-label { font-size: 11px; }
.p-row-2 .p-num { font-size: 16px; color: var(--muted); font-weight: 300; }

.btn-wa {
  width: 100%;
  padding: 14px 24px;
  background: #25d366;
  color: white;
  border: none;
  border-radius: var(--r);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(37,211,102,.25);
}
.btn-wa:hover { background: #20b85a; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,.32); }
.btn-wa:active { transform: scale(.99); }

/* ─── FEATURE SECTIONS ────────────────────────── */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.feature-img {
  overflow: hidden;
  position: relative;
}
.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.feature:hover .feature-img img { transform: scale(1.04); }

.feature-body {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface);
}

.feature--reverse .feature-img { order: 2; }
.feature--reverse .feature-body { order: 1; background: var(--cream); }

.feature-kicker {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--taupe-d);
  margin-bottom: 18px;
}

.feature-h2 {
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 300;
  letter-spacing: -.5px;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.feature-tagline {
  font-size: 15px;
  font-weight: 400;
  color: var(--taupe-d);
  font-style: italic;
  margin-bottom: 16px;
}

.feature-p {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 32px;
}
.feature-tag {
  padding: 5px 14px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .5px;
  color: var(--muted);
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--charcoal);
  color: var(--surface);
  border-radius: var(--r);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  align-self: flex-start;
  transition: background .2s, transform .15s;
}
.btn-read-more:hover { background: var(--char-3); transform: translateY(-1px); }

/* ─── PASOS ───────────────────────────────────── */
.pasos-section {
  background: var(--charcoal);
  padding: 100px var(--pad);
}

.section-header { margin-bottom: 60px; }

.s-kicker {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 16px;
}

.s-h2 {
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 300;
  letter-spacing: -1px;
  line-height: 1.06;
  margin-bottom: 14px;
}

.s-p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 500px;
  letter-spacing: .2px;
}

.pasos-section .s-h2 { color: var(--surface); }
.pasos-section .s-p { color: rgba(255,255,255,.38); }

.pasos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.paso {
  padding: 40px 36px;
  background: var(--char-2);
  position: relative;
  transition: background .3s;
}
.paso:hover { background: var(--char-3); }

.paso-num {
  font-size: 60px;
  font-weight: 200;
  letter-spacing: -2px;
  color: rgba(255,255,255,.35);
  line-height: 1;
  margin-bottom: 16px;
}

.paso-ico {
  position: absolute;
  top: 36px; right: 36px;
  width: 42px; height: 42px;
  background: var(--taupe);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
}

.paso-h3 {
  font-size: 18px;
  font-weight: 400;
  color: var(--surface);
  letter-spacing: .2px;
  margin-bottom: 10px;
}
.paso-p {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
}

/* ─── COBERTURA ───────────────────────────────── */
.cob-section {
  padding: 100px var(--pad);
  background: var(--cream);
}
.cob-section .s-h2 { color: var(--charcoal); }
.cob-section .s-p { color: var(--muted); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 52px;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
}
.info-card.highlight {
  border-color: var(--taupe);
  background: var(--cream);
}

.info-ico {
  width: 46px; height: 46px;
  border-radius: var(--r);
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.info-card.highlight .info-ico { background: var(--taupe); }

.info-h3 {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -.3px;
  margin-bottom: 10px;
}
.info-p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.info-list { display: flex; flex-direction: column; gap: 10px; }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 300;
  color: var(--charcoal);
}
.info-check { color: var(--taupe-d); flex-shrink: 0; margin-top: 2px; }

/* ─── PAGOS ───────────────────────────────────── */
.pagos-section {
  padding: 100px var(--pad);
  background: var(--surface);
}
.pagos-section .s-h2 { color: var(--charcoal); }
.pagos-section .s-p { color: var(--muted); }

.pagos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 52px;
}

.pago-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.pago-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(28,28,28,.07); }
.pago-card.dest { border-color: var(--taupe); background: var(--cream-2); }

.pago-badge {
  position: absolute;
  top: -11px; left: 20px;
  background: var(--charcoal);
  color: white;
  padding: 3px 12px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.pago-ico {
  width: 48px; height: 48px;
  border-radius: var(--r);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.pago-h3 { font-size: 16px; font-weight: 400; letter-spacing: -.2px; margin-bottom: 7px; }
.pago-p { font-size: 13.5px; font-weight: 300; color: var(--muted); line-height: 1.6; }

/* ─── CTA BANNER ──────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 120px var(--pad);
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('a.png');
  background-size: cover;
  background-position: center;
  filter: brightness(.22);
}

.cta-content { position: relative; }

.cta-h2 {
  font-size: clamp(36px, 5.5vw, 70px);
  font-weight: 200;
  letter-spacing: 2px;
  line-height: 1.0;
  color: var(--surface);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.cta-p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,.52);
  letter-spacing: .3px;
  margin-bottom: 48px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-wa-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #25d366;
  color: white;
  border-radius: var(--r);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 20px rgba(37,211,102,.28);
}
.btn-wa-big:hover { background: #20b85a; transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--r);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background .2s, border-color .2s, color .2s;
}
.btn-ghost:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.5);
  color: white;
}

/* ─── FOOTER ──────────────────────────────────── */
.footer { background: var(--charcoal); }

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px var(--pad) 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-logo-f {
  display: inline-flex;
  align-items: center;
  height: 40px;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-logo-f img {
  height: 100%;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
}

.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.38);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 240px;
  letter-spacing: .2px;
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #25d366;
  color: white;
  border-radius: var(--r);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: background .2s;
}
.footer-wa:hover { background: #20b85a; }

.footer-col-title {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.46);
  letter-spacing: .3px;
  transition: color .2s;
}
.footer-links a:hover { color: rgba(255,255,255,.85); }

.footer-bottom {
  padding: 20px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 11.5px;
  font-weight: 300;
  letter-spacing: .5px;
  color: rgba(255,255,255,.22);
}

/* ─── WHATSAPP FLOAT ──────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 90;
  width: 54px; height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.38);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.48); }

/* ─── ANIMATIONS ──────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal.vis { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .cot-section { grid-template-columns: 1fr; gap: 48px; }
  .feature { grid-template-columns: 1fr; min-height: auto; }
  .feature-img { height: 340px; }
  .feature-body { padding: 48px 40px; }
  .feature--reverse .feature-img { order: 0; }
  .feature--reverse .feature-body { order: 0; }
  .pasos-grid { grid-template-columns: 1fr; gap: 1px; }
  .two-col { grid-template-columns: 1fr; }
  .pagos-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .navbar { height: 62px; }
  .nav-links { display: none; }
  .hero-content { padding: 72px 24px; }
  .product-grid { grid-template-columns: 1fr; height: auto; }
  .grid-item { height: 220px; }
  .cot-section { padding: 64px 24px; }
  .pasos-section { padding: 64px 24px; }
  .cob-section { padding: 64px 24px; }
  .pagos-section { padding: 64px 24px; }
  .cta-banner { padding: 80px 24px; }
  .feature-body { padding: 40px 24px; }
  .footer-top { grid-template-columns: 1fr; padding: 48px 24px 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 16px 24px; }
  .wa-float { bottom: 20px; right: 20px; }
}
