/* ══════════════════════════════════════════════════
   VESTIDOS DE NOVIA — Bridal Dream · Jardín de Novias
   Mobile-first · Full responsive
   ══════════════════════════════════════════════════ */

:root {
  --gold:        #B37E10;
  --gold-light:  #F8DD7B;
  --gold-mid:    #D4A843;
  --black:       #000000;
  --black-soft:  #0d0d0d;
  --black-card:  #111111;
  --white:       #FFFFFF;
  --text-muted:  rgba(248,221,123,0.7);
  --border-gold: rgba(212,168,67,0.72);
}

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

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ── SHARED ────────────────────────────────────────── */
.btn-gold {
  display: inline-block;
  padding: .9rem 2.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  transition: opacity .3s;
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity .3s;
}
.btn-gold:hover::after { opacity: 1; }
.btn-gold span { position: relative; z-index: 1; }

.btn-outline, .btn-ghost {
  display: inline-block;
  padding: .9rem 2.5rem;
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  transition: border-color .3s, color .3s;
}
.btn-outline:hover, .btn-ghost:hover {
  border-color: var(--gold-light);
  color: var(--white);
}

.vn-eyebrow {
  font-size: .7rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.vn-eyebrow::before, .vn-eyebrow::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
}

/* ── HERO ───────────────────────────────────────────── */
.vn-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  overflow: hidden;
}
.vn-hero-bg {
  position: relative;
  height: 100%;
  min-height: 100vh;
}
.vn-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.vn-hero-overlay { display: none; }

.vn-hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 5vw 5rem;
  background: var(--black);
  position: relative;
}
.vn-hero-inner::before {
  content: '';
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border-gold), transparent);
}
.vn-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.vn-hero-sub {
  font-size: .72rem;
  letter-spacing: .2em;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  line-height: 2;
}
.vn-hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.vn-hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 5vw;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: .45rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.vn-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:.3; transform: scaleY(.6); }
  50% { opacity:1; transform: scaleY(1); }
}

/* ── STATS STRIP ─────────────────────────────────────── */
.vn-stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--black-card);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 2rem 2vw;
  flex-wrap: wrap;
}
.vn-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .75rem 3vw;
  gap: .4rem;
}
.vn-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vn-stat-label {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.vn-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-gold);
  opacity: .4;
}

/* ── SAY YES TO THE DRESS ────────────────────────────── */
.vn-sayes-section {
  background: var(--black);
  padding: 6rem 5vw;
  border-bottom: 1px solid rgba(212,168,67,.12);
}
.vn-sayes-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.vn-sayes-eyebrow {
  justify-content: center;
  font-size: .75rem;
  letter-spacing: .45em;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.vn-sayes-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 2.5rem;
}
.vn-sayes-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vn-sayes-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.vn-sayes-body p {
  font-size: .88rem;
  line-height: 2;
  color: rgba(255,255,255,.72);
  letter-spacing: .02em;
}
.vn-sayes-firma {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-mid);
  letter-spacing: .05em;
}

/* ── SECTION BASE ────────────────────────────────────── */
.vn-section {
  padding: 6rem 5vw;
}
.vn-section-dark { background: var(--black-soft); }
.vn-section-black { background: var(--black); }

.vn-section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.vn-section-header .vn-eyebrow {
  justify-content: center;
}
.vn-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: .75rem;
}
.vn-section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vn-section-sub {
  font-size: .8rem;
  line-height: 1.9;
  color: rgba(255,255,255,.62);
  max-width: 580px;
  margin: 0 auto;
  letter-spacing: .05em;
}

/* ── OPTIONS GRID ────────────────────────────────────── */
.vn-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 1000px;
  margin: 0 auto;
}
.vn-option-card {
  background: var(--black-card);
  border: 1px solid rgba(212,168,67,.2);
  padding: 3rem 2.5rem;
  position: relative;
  transition: border-color .3s;
}
.vn-option-card:hover {
  border-color: var(--border-gold);
}
.vn-option-featured {
  border-color: rgba(212,168,67,.5);
  background: linear-gradient(160deg, #111 0%, #1a1200 100%);
}
.vn-option-badge {
  position: absolute;
  top: -1px; right: 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-size: .45rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 600;
  padding: .3rem .9rem;
}
.vn-option-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}
.vn-option-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
}
.vn-option-desc {
  font-size: .82rem;
  line-height: 1.85;
  color: rgba(255,255,255,.68);
  margin-bottom: 1.75rem;
}
.vn-option-list {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.vn-option-list li {
  font-size: .78rem;
  letter-spacing: .05em;
  color: rgba(255,255,255,.78);
  padding-left: 1.25rem;
  position: relative;
}
.vn-option-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .45rem;
  top: .05em;
}
.vn-option-cta {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(212,168,67,.3);
  padding-bottom: .2rem;
  transition: border-color .3s, color .3s;
}
.vn-option-cta:hover { color: var(--white); border-color: var(--gold-light); }
.vn-cta-gold {
  color: var(--gold);
  border-color: var(--gold);
}

/* ── COLECCIÓN PREVIEW ───────────────────────────────── */
.vn-coleccion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.vn-col-card {
  background: var(--black-card);
  border: 1px solid rgba(212,168,67,.15);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .3s, transform .3s;
}
.vn-col-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.vn-col-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #0d0d0d;
  display: flex; align-items: center; justify-content: center;
}
.vn-col-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.vn-col-card:hover .vn-col-img img { transform: scale(1.04); }
.vn-col-placeholder {
  font-size: 3rem;
  opacity: .15;
}
.vn-col-tag {
  position: absolute;
  top: .75rem; left: .75rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-size: .45rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: .2rem .6rem;
}
.vn-col-count {
  position: absolute;
  bottom: .75rem; right: .75rem;
  background: rgba(0,0,0,.7);
  color: rgba(248,221,123,.85);
  font-size: .5rem;
  letter-spacing: .1em;
  padding: .2rem .5rem;
  border: 1px solid rgba(212,168,67,.3);
}
.vn-col-body {
  padding: 1rem 1.25rem 1.25rem;
}
.vn-col-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vn-col-meta {
  font-size: .58rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.vn-option-list li strong {
  color: var(--gold-light);
  font-weight: 500;
}
.vn-col-fav {
  position: absolute;
  top: .65rem; right: .65rem;
  width: 32px; height: 32px;
  background: rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: .85rem;
  transition: all .2s;
  z-index: 2;
  backdrop-filter: blur(4px);
  color: var(--white);
}
.vn-col-fav:hover,
.vn-col-fav.act {
  background: rgba(179,126,16,.3);
  border-color: var(--gold);
  color: var(--gold-light);
}

.vn-coleccion-empty {
  text-align: center;
  padding: 3rem;
  color: rgba(255,255,255,.3);
  font-size: .75rem;
  letter-spacing: .05em;
  max-width: 500px;
  margin: 0 auto;
}

/* ── GALERÍA CTA ─────────────────────────────────────── */
.vn-galeria-cta {
  position: relative;
  padding: 7rem 5vw;
  text-align: center;
  overflow: hidden;
}
.vn-galeria-bg {
  position: absolute; inset: 0;
}
.vn-galeria-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.35) saturate(.6);
}
.vn-galeria-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.6);
}
.vn-galeria-inner {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0 auto;
}
.vn-galeria-inner .vn-eyebrow { justify-content: center; }
.vn-galeria-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
}
.vn-galeria-sub {
  font-size: .8rem;
  line-height: 1.9;
  color: rgba(255,255,255,.72);
  margin-bottom: 2.5rem;
}
.vn-galeria-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── PROCESO ─────────────────────────────────────────── */
.vn-proceso-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: 1300px;
  margin: 0 auto;
}

/* Paso destacado — El momento del Sí */
.vn-paso-highlight {
  background: rgba(179,126,16,.06);
  border-left: 1px solid rgba(212,168,67,.35);
  border-right: 1px solid rgba(212,168,67,.35);
}
.vn-paso-highlight .vn-paso-num {
  color: rgba(212,168,67,.22);
}
.vn-paso-highlight .vn-paso-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold, #B37E10), #F8DD7B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vn-paso {
  padding: 2.5rem 1.75rem;
  border-left: 1px solid rgba(212,168,67,.15);
  position: relative;
}
.vn-paso:first-child { border-left: none; }
.vn-paso-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(212,168,67,.12);
  margin-bottom: .5rem;
  position: absolute;
  top: 1.5rem; right: 1.5rem;
}
.vn-paso-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.vn-paso-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .75rem;
}
.vn-paso-desc {
  font-size: .8rem;
  line-height: 1.85;
  color: rgba(255,255,255,.62);
}

/* ── FAQ ─────────────────────────────────────────────── */
.vn-faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.vn-faq-item {
  border-bottom: 1px solid rgba(212,168,67,.2);
}
.vn-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  letter-spacing: .05em;
  color: rgba(255,255,255,.88);
  text-align: left;
  transition: color .3s;
}
.vn-faq-q:hover { color: var(--white); }
.vn-faq-icon {
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform .3s;
}
.vn-faq-item.open .vn-faq-icon { transform: rotate(45deg); }
.vn-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.vn-faq-item.open .vn-faq-a {
  max-height: 300px;
}
.vn-faq-a p {
  font-size: .8rem;
  line-height: 1.9;
  color: rgba(255,255,255,.62);
  padding-bottom: 1.5rem;
}

/* ── CTA FINAL ───────────────────────────────────────── */
.vn-cta-final {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1000 50%, #0d0d0d 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 7rem 5vw;
  text-align: center;
}
.vn-cta-inner { max-width: 620px; margin: 0 auto; }
.vn-cta-inner .vn-eyebrow { justify-content: center; }
.vn-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.vn-cta-sub {
  font-size: .82rem;
  line-height: 1.9;
  color: rgba(255,255,255,.65);
  margin-bottom: 2.5rem;
}
.vn-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ──────────────────────────────────────────── */
.vn-footer {
  background: var(--black);
  border-top: 1px solid rgba(212,168,67,.15);
  padding: 1.75rem 5vw;
  text-align: center;
  font-size: .7rem;
  letter-spacing: .15em;
  color: rgba(255,255,255,.4);
}

/* ── WA FLOAT ────────────────────────────────────────── */
.wa-float-wrap {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .6rem;
}
.wa-float {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(179,126,16,.4);
  transition: transform .3s, box-shadow .3s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(179,126,16,.6);
}
.wa-float-menu {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s;
}
.wa-float-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.wa-branch-btn {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--black-card);
  border: 1px solid var(--border-gold);
  padding: .6rem 1rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, border-color .2s;
}
.wa-branch-btn:hover {
  background: #1a1200;
  border-color: var(--gold-light);
}
.wa-branch-city {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-family: 'Montserrat', sans-serif;
}

/* ══════════════════════════════════
   RESPONSIVE — TABLET (768px)
   ══════════════════════════════════ */
@media(max-width:768px) {
  .cursor,.cursor-ring { display: none; }

  /* HERO */
  .vn-hero { grid-template-columns: 1fr; min-height: auto; }
  .vn-hero-bg { min-height: 70vw; max-height: 85vw; }
  .vn-hero-inner { padding: 3rem 1.5rem 3.5rem; }
  .vn-hero-inner::before { display: none; }
  .vn-hero-title { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .vn-hero-sub { font-size: .6rem; }
  .vn-hero-cta { flex-direction: column; gap: .75rem; }
  .vn-hero-cta .btn-gold,
  .vn-hero-cta .btn-outline { width: 100%; max-width: 300px; text-align: center; }
  .vn-hero-scroll { display: none; }

  /* STATS */
  .vn-stats-strip { gap: 0; padding: 1.5rem 1vw; }
  .vn-stat { padding: .6rem 2vw; }
  .vn-stat-divider { height: 30px; }

  /* SECTIONS */
  .vn-section { padding: 4rem 5vw; }
  .vn-section-header { margin-bottom: 2.5rem; }

  /* COLECCIÓN */
  .vn-coleccion-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* OPTIONS */
  .vn-options-grid { grid-template-columns: 1fr; gap: 1rem; }
  .vn-option-card { padding: 2.5rem 1.75rem; }

  /* PROCESO */
  .vn-proceso-grid { grid-template-columns: repeat(3, 1fr); }
  .vn-paso { border-left: 1px solid rgba(212,168,67,.15); }
  .vn-paso:nth-child(3n+1) { border-left: none; }
  .vn-paso-highlight { border-left: 1px solid rgba(212,168,67,.35); border-right: none; }
  .vn-paso-highlight:nth-child(3n+1) { border-left: none; }

  /* GALERÍA */
  .vn-galeria-cta { padding: 5rem 5vw; }
  .vn-galeria-btns { flex-direction: column; align-items: center; }
  .vn-galeria-btns .btn-gold,
  .vn-galeria-btns .btn-outline { width: 100%; max-width: 300px; text-align: center; }

  /* CTA */
  .vn-cta-final { padding: 5rem 5vw; }
  .vn-cta-btns { flex-direction: column; align-items: center; }
  .vn-cta-btns .btn-gold,
  .vn-cta-btns .btn-ghost { width: 100%; max-width: 300px; text-align: center; }
}

/* ══════════════════════════════════
   RESPONSIVE — MOBILE (480px)
   ══════════════════════════════════ */
@media(max-width:480px) {
  .vn-hero-bg { min-height: 85vw; }
  .vn-hero-inner { padding: 2.5rem 1.25rem 3rem; }
  .vn-hero-title { font-size: 2.4rem; }

  .vn-stats-strip { flex-direction: column; gap: 0; padding: 1rem 0; }
  .vn-stat-divider { width: 60px; height: 1px; }

  .vn-sayes-section { padding: 3.5rem 1.25rem; }
  .vn-sayes-body p { font-size: .82rem; }
  .vn-coleccion-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .vn-col-name { font-size: 1rem; }

  .vn-section { padding: 3rem 1.25rem; }
  .vn-section-title { font-size: 2.1rem; }
  .vn-galeria-title { font-size: 2.1rem; }
  .vn-cta-title { font-size: 2.1rem; }

  .vn-proceso-grid { grid-template-columns: repeat(2, 1fr); }
  .vn-paso { border-left: 1px solid rgba(212,168,67,.12); border-top: none; }
  .vn-paso:nth-child(odd) { border-left: none; }
  .vn-paso:nth-child(3n+1) { border-left: 1px solid rgba(212,168,67,.12); }
  .vn-paso:nth-child(odd) { border-left: none; }
  .vn-paso-highlight { border-left: 1px solid rgba(212,168,67,.35); border-right: none; }

  .vn-option-card { padding: 2rem 1.25rem; }
  .vn-faq-q { font-size: .62rem; }
}

/* ══════════════════════════════════
   RESPONSIVE — SMALL (360px)
   ══════════════════════════════════ */
@media(max-width:360px) {
  .vn-hero-title { font-size: 2rem; }
  .vn-section-title { font-size: 1.85rem; }
  .vn-galeria-title { font-size: 1.85rem; }
  .vn-cta-title { font-size: 1.85rem; }
  .vn-eyebrow { font-size: .48rem; }
  .vn-option-card { padding: 1.75rem 1rem; }
  .vn-proceso-grid { grid-template-columns: 1fr; }
  .vn-paso { border-left: none; border-top: 1px solid rgba(212,168,67,.12); border-right: none; }
  .vn-paso:first-child { border-top: none; }
  .vn-paso-highlight { border-left: none; border-right: none; border-top: 1px solid rgba(212,168,67,.35); border-bottom: 1px solid rgba(212,168,67,.35); }
}
