/* Variant A v2 — Storytelling cálido, hero full-bleed, mobile-first */

/* ---------- BASE ---------- */
.va-root {
  background: var(--sky);
  color: var(--navy);
  font-size: 17px;
  line-height: 1.55;
  min-height: 100%;
}
.va-h1 { font-family: "Bellota", serif; font-weight: 700; font-size: clamp(2.4rem, 6.2vw, 5.4rem); line-height: 1; color: var(--navy); }
.va-h1 em { font-style: italic; color: var(--orange); }
.va-h2 { font-family: "Bellota", serif; font-weight: 700; font-size: clamp(1.9rem, 4.4vw, 2.9rem); line-height: 1.06; color: var(--navy); }
.va-h2 .ink { color: var(--orange); }

/* ---------- HEADER ---------- */
.va-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: .75rem 5vw;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(29,39,64,.08);
}
.va-logo { height: 36px; width: auto; }
.va-header .ff-btn { padding: .65rem 1.1rem; font-size: .92rem; }

/* ---------- HERO SPLIT (text + contained image) ---------- */
.va-hero {
  position: relative;
  background: var(--sky);
  padding: 4rem 6vw 4rem;
  overflow: hidden;
}
/* sutil pattern de puntos atado al área del disco */
.va-hero-art::before {
  content: ""; position: absolute;
  width: 150%; aspect-ratio: 1;
  background-image: radial-gradient(circle, rgba(29,39,64,.12) 1px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 65%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 65%);
}
/* glow orgánico naranja, anclado al disco */
.va-hero-art::after {
  content: ""; position: absolute;
  width: 125%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(249,116,21,.38) 0%, rgba(249,116,21,.18) 30%, transparent 60%);
  pointer-events: none;
  filter: blur(30px);
  z-index: 0;
}
.va-hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
}
.va-hero-text { position: relative; z-index: 2; }
.va-hero-text .ff-eyebrow { margin-bottom: 1.4rem; }
.va-hero h1 { color: var(--navy); max-width: 14ch; }
.va-hero h1 em { color: var(--orange); }
.va-hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--navy-2);
  margin: 1.4rem 0 1.6rem;
  max-width: 36rem;
  line-height: 1.55;
}
.va-hero-solution {
  position: relative;
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  color: var(--navy);
  margin: 0 0 2.2rem;
  max-width: 36rem;
  line-height: 1.5;
  padding-left: 1.1rem;
  border-left: 3px solid var(--orange);
}
.va-hero-solution strong {
  font-family: "Bellota", serif;
  font-weight: 700;
  color: var(--orange);
  font-size: 1.15em;
}
.va-hero-solution em {
  font-style: normal;
  background: linear-gradient(180deg, transparent 65%, rgba(249,116,21,.22) 65%);
  padding: 0 .15em;
}
.va-hero-cta { display: inline-flex; gap: .8rem; }
.va-hero-cta .ff-btn { padding: 1.1rem 1.8rem; font-size: 1.05rem; }

.va-hero-art {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 520px;
}
.va-hero-art-halo {
  position: absolute;
  width: 110%; aspect-ratio: 1;
  background: radial-gradient(circle at 50% 50%, rgba(249,116,21,.22) 0%, rgba(249,116,21,.08) 35%, transparent 65%);
  z-index: 0;
  animation: heroPulse 6s ease-in-out infinite;
}
@keyframes heroPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: .85; }
}
.va-hero-art-disc {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 30px 80px -20px rgba(29,39,64,.35),
    0 0 0 14px rgba(255,255,255,.7),
    0 0 0 15px rgba(168,188,237,.5);
  z-index: 1;
  background: var(--periwinkle, #a8bced);
  animation: heroFloat 7s ease-in-out infinite;
  will-change: transform;
  transform: translateZ(0);
}
.va-hero-art-disc img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
@keyframes heroFloat {
  0%,100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(0,-10px,0); }
}

/* floating info chips */
.va-chip {
  position: absolute;
  background: var(--white);
  padding: .75rem 1rem;
  border-radius: 14px;
  display: flex; align-items: center; gap: .65rem;
  box-shadow: 0 14px 30px -10px rgba(29,39,64,.25), 0 2px 4px rgba(29,39,64,.06);
  z-index: 2;
  font-size: .82rem;
  white-space: nowrap;
}
.va-chip > div { display: flex; flex-direction: column; line-height: 1.2; }
.va-chip strong { color: var(--navy); font-weight: 600; font-size: .88rem; }
.va-chip span { color: var(--navy-2); font-size: .72rem; margin-top: 1px; }
.va-chip-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

.va-chip-1 { top: 8%; right: -4%; animation: chipFloatA 5s ease-in-out infinite; }
.va-chip-2 { bottom: 22%; left: -10%; animation: chipFloatB 6s ease-in-out infinite .8s; }
.va-chip-3 { bottom: 4%; right: 4%; animation: chipFloatA 5.5s ease-in-out infinite .4s; }

@keyframes chipFloatA {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(-2deg); }
}
@keyframes chipFloatB {
  0%,100% { transform: translateY(0) rotate(3deg); }
  50% { transform: translateY(-6px) rotate(3deg); }
}

.va-hero-art-bubble {
  position: absolute;
  top: 38%; left: -8%;
  background: var(--orange);
  color: var(--white);
  padding: 1rem 1.3rem;
  border-radius: 18px;
  box-shadow: 0 12px 30px -8px rgba(249,116,21,.5);
  display: flex; flex-direction: column;
  transform: rotate(-6deg);
  z-index: 3;
}
.va-hero-art-bubble strong {
  font-family: "Bellota", serif; font-size: 1.7rem; line-height: 1;
}
.va-hero-art-bubble span { font-size: .82rem; opacity: .92; margin-top: .25rem; }

/* ---------- QUÉ ES ---------- */
.va-quees { padding: 6rem 6vw; background: var(--sky); }
.va-quees-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1180px; margin: 0 auto; align-items: center; }
.va-quees .va-h2 { margin: 1rem 0 1.4rem; }
.va-lead { color: var(--navy-2); font-size: 1.08rem; }
.va-moments { display: flex; flex-direction: column; gap: 1rem; }
.va-moment {
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-md);
  border: 1.5px solid transparent;
  transition: transform .3s ease, border-color .3s ease;
}
.va-moment:hover { transform: translateY(-4px); border-color: var(--orange); }
.va-moment-num {
  font-family: "Bellota", serif; font-size: 2.1rem; line-height: 1;
  color: var(--orange);
  background: var(--orange-tint);
  padding: .5rem .9rem; border-radius: 12px;
  flex-shrink: 0;
}
.va-moment h3 { font-family: "Bellota", serif; font-size: 1.3rem; margin-bottom: .25rem; color: var(--navy); }
.va-moment p { color: var(--navy-3); font-size: .98rem; }

/* ---------- FEATURES ---------- */
.va-features { padding: 4rem 6vw 6rem; max-width: 1180px; margin: 0 auto; }
.va-features-head { text-align: center; margin-bottom: 4rem; }
.va-features-head .ff-eyebrow { margin-bottom: 1rem; }
.va-feature {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 4rem; align-items: center;
  margin-bottom: 5rem;
}
.va-feature.rev { grid-template-columns: 1.1fr 1fr; }
.va-feature.rev .va-feature-img { order: 2; }
.va-feature-img {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  padding: 1.5rem;
}
.va-feature-blob {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, var(--periwinkle-soft) 0%, transparent 65%);
  border-radius: 50%;
}
.va-feature.rev .va-feature-blob { background: radial-gradient(circle at 50% 50%, var(--orange-tint) 0%, transparent 65%); }
.va-feature-img img {
  position: relative; z-index: 1;
  max-width: 280px; width: 100%;
  border-radius: 26px;
  box-shadow: 0 20px 50px rgba(29,39,64,.18);
  border: 4px solid var(--white);
}
.va-feature-tag {
  display: inline-block;
  background: var(--orange-tint);
  color: var(--orange-deep);
  padding: .35rem .8rem;
  border-radius: 999px;
  font-size: .8rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.va-feature-text h3 { font-family: "Bellota", serif; font-size: clamp(1.6rem, 2.4vw, 2.1rem); line-height: 1.1; margin-bottom: .9rem; color: var(--navy); }
.va-feature-text p { color: var(--navy-2); font-size: 1.02rem; margin-bottom: 1.1rem; }
.va-feature-hint {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--white);
  border: 1.5px dashed var(--orange);
  color: var(--orange-deep);
  padding: .65rem 1rem;
  border-radius: 999px;
  font-size: .92rem;
}

/* ---------- CTA BAND ---------- */
.va-cta-band { padding: 0 6vw 6rem; }
.va-cta-shell {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  border-radius: var(--r-xl);
  padding: 3.5rem;
  max-width: 1180px; margin: 0 auto;
  box-shadow: 0 20px 60px rgba(249,116,21,.3);
  color: var(--white);
  position: relative; overflow: hidden;
}
.va-cta-shell::before {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 380px; height: 380px; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.va-cta-screens { max-width: 100%; filter: drop-shadow(0 18px 30px rgba(0,0,0,.25)); position: relative; z-index: 1; transform: scale(1.15); transform-origin: center; }
.va-cta-text { position: relative; z-index: 1; }
.va-cta-text .va-h2 { color: var(--white); margin-bottom: 1.2rem; }
.va-cta-text .va-h2 .ink { color: var(--navy); background: var(--white); padding: 0 .5rem; border-radius: 8px; }
.va-cta-text p { color: rgba(255,255,255,.94); font-size: 1.05rem; margin-bottom: 1.4rem; }
.va-cta-text .ff-btn { background: var(--white); color: var(--orange-deep); box-shadow: 0 2px 0 var(--navy); }
.va-cta-text .ff-btn:hover { background: var(--navy); color: var(--white); }

/* ---------- PASOS ---------- */
.va-pasos { padding: 0 6vw 6rem; }
.va-pasos-head { text-align: center; margin-bottom: 3rem; }
.va-pasos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; max-width: 1180px; margin: 0 auto; }
.va-paso {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2.4rem 1.8rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform .3s ease;
}
.va-paso:hover { transform: translateY(-6px); }
.va-paso-num {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 52px; height: 52px;
  background: var(--orange); color: var(--white);
  font-family: "Bellota", serif; font-size: 1.3rem;
  display: grid; place-items: center;
  border-radius: 50%;
  box-shadow: 0 4px 0 var(--orange-deep);
  border: 4px solid var(--white);
}
.va-paso img { max-width: 180px; width: 100%; margin: 1.2rem auto 1rem; }
.va-paso h3 { font-family: "Bellota", serif; font-size: 1.3rem; margin-bottom: .4rem; color: var(--navy); }
.va-paso p { color: var(--navy-3); font-size: .95rem; }

/* ---------- VISION ---------- */
.va-vision { padding: 4rem 6vw 6rem; background: var(--sky-light); }
.va-vision-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; max-width: 1180px; margin: 0 auto; align-items: center; }
.va-vision .va-h2 { margin: 1rem 0; }
.va-vision .va-lead { margin-bottom: 1.6rem; }
.va-vision-img img { max-width: 100%; }

/* ---------- ACCORDION ---------- */
.ff-acc { display: flex; flex-direction: column; gap: .55rem; }
.ff-acc-item { background: var(--white); border-radius: var(--r-md); box-shadow: var(--shadow-sm); overflow: hidden; transition: box-shadow .3s ease; }
.ff-acc-item.is-open { box-shadow: var(--shadow-md); }
.ff-acc-head {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.2rem;
  background: transparent; border: 0; cursor: pointer;
  font: inherit;
  color: var(--navy); font-weight: 600; font-size: 1rem; text-align: left;
}
.ff-acc-head:hover { color: var(--orange-deep); }
.ff-acc-icon {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: var(--orange-tint); color: var(--orange-deep);
  border-radius: 50%;
  font-size: 1.15rem; font-weight: 700;
  transition: transform .3s ease, background .3s ease;
  flex-shrink: 0;
}
.ff-acc-item.is-open .ff-acc-icon { transform: rotate(45deg); background: var(--orange); color: var(--white); }
.ff-acc-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.ff-acc-item.is-open .ff-acc-body { max-height: 320px; }
.ff-acc-body .inner { padding: 0 1.2rem 1.2rem; color: var(--navy-3); font-size: .96rem; line-height: 1.55; }

/* ---------- IMAGINA ---------- */
.va-imagina { padding: 0 6vw 6rem; }
.va-imagina-shell {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  max-width: 1180px; margin: 0 auto;
  align-items: center;
}
.va-imagina-shell img { max-width: 100%; }
.va-imagina-text .va-h2 { margin-bottom: 1rem; }
.va-imagina-text > p { color: var(--navy-2); margin-bottom: 1.4rem; }
.va-imagina-list { list-style: none; display: flex; flex-direction: column; gap: .8rem; }
.va-imagina-list li {
  display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: flex-start;
  color: var(--navy-2);
  padding: .7rem;
  border-radius: 12px;
  font-size: .98rem;
  transition: background .25s ease;
}
.va-imagina-list li:hover { background: var(--sky-light); }
.va-imagina-list li > span:first-child {
  font-size: 1.4rem; line-height: 1;
  background: var(--orange-tint);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}

/* ---------- VIDEO ---------- */
.va-video { padding: 0 6vw 6rem; max-width: 1100px; margin: 0 auto; text-align: center; }
.va-video-head { margin-bottom: 1.8rem; }
.va-video-head p { color: var(--navy-3); margin-top: .5rem; }
.va-video-frame {
  position: relative;
  background: var(--navy);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
}
.va-video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- FAQ ---------- */
.va-faq { padding: 0 6vw 6rem; max-width: 800px; margin: 0 auto; }
.va-faq .va-h2 { margin-bottom: 1.8rem; text-align: center; }

/* ---------- FOOTER ---------- */
.va-footer { background: var(--navy); color: var(--white); padding: 3.5rem 6vw 1.8rem; }
.va-foot-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 2.4rem; max-width: 1180px; margin: 0 auto 2.5rem; }
.va-foot-grid h5 { font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--periwinkle); margin-bottom: .9rem; }
.va-foot-logo { height: 44px; margin-bottom: .6rem; background: var(--white); padding: .4rem .55rem; border-radius: 6px; }
.va-foot-grid p { color: var(--periwinkle); font-family: "Bellota", serif; font-size: 1rem; }
.va-foot-social { display: flex; flex-direction: column; gap: .45rem; }
.va-foot-social a { color: var(--white); text-decoration: none; transition: color .2s; font-size: .92rem; }
.va-foot-social a:hover { color: var(--orange-light); }
.va-foot-link img { max-height: 46px; background: var(--white); padding: .4rem; border-radius: 6px; }
.va-foot-ods { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem; }
.va-foot-ods img { width: 100%; border-radius: 6px; }
.va-foot-impulsan { display: flex; flex-direction: column; gap: .6rem; }
.va-foot-impulsan img { max-width: 130px; background: var(--white); padding: .35rem; border-radius: 6px; }
.va-foot-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.3rem;
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1180px; margin: 0 auto;
  color: var(--periwinkle); font-size: .88rem;
}
.va-naturcode { max-height: 32px; background: var(--white); padding: .3rem .5rem; border-radius: 6px; }

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .va-quees-grid, .va-vision-grid, .va-imagina-shell { grid-template-columns: 1fr; gap: 2rem; }
  .va-cta-shell { grid-template-columns: 1fr; gap: 2rem; padding: 2.4rem; }
  .va-feature, .va-feature.rev { grid-template-columns: 1fr; gap: 1.6rem; margin-bottom: 4rem; }
  .va-feature.rev .va-feature-img { order: 0; }
  .va-foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .va-root { font-size: 16px; }
  .va-header { padding: .65rem 4vw; }
  .va-logo { height: 30px; }
  .va-header .ff-btn { padding: .55rem .9rem; font-size: .85rem; }

  .va-hero {
    padding: 2.5rem 5vw 3rem;
    background: linear-gradient(180deg, #f4f7ff 0%, var(--sky) 100%);
  }
  .va-hero::before, .va-hero::after { display: none; }
  .va-hero-inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .va-hero-text { text-align: left; }
  .va-hero h1 { max-width: 100%; }
  .va-hero-sub { font-size: 1rem; margin: 1rem 0 1.6rem; }
  .va-hero-cta { width: 100%; }
  .va-hero-cta .ff-btn { width: 100%; justify-content: center; padding: 1rem 1.4rem; }
  .va-hero-art { min-height: auto; padding: 2rem 0 3rem; }
  .va-hero-art-disc { width: min(72vw, 320px); }
  .va-chip { font-size: .76rem; padding: .55rem .8rem; }
  .va-chip strong { font-size: .8rem; }
  .va-chip span { font-size: .68rem; }
  .va-chip-1 { top: -2%; right: -2%; }
  .va-chip-2 { bottom: 28%; left: -4%; }
  .va-chip-3 { display: flex; top: 6%; left: -4%; right: auto; bottom: auto; }
  .va-hero-art-bubble { top: auto; bottom: -2%; right: -2%; left: auto; padding: .7rem 1rem; }
  .va-hero-art-bubble strong { font-size: 1.3rem; }

  .va-quees, .va-vision { padding: 4rem 5vw; }
  .va-features { padding: 3rem 5vw 4rem; }
  .va-features-head { margin-bottom: 2.5rem; }
  .va-feature { margin-bottom: 3rem; }
  .va-feature-img { padding: 1rem; }
  .va-feature-img img { max-width: 220px; }

  .va-cta-band { padding: 0 5vw 4rem; }
  .va-cta-shell { padding: 2rem 1.4rem; border-radius: 24px; }
  .va-cta-text .va-h2 { font-size: 1.7rem; }

  .va-pasos { padding: 0 5vw 4rem; }
  .va-pasos-grid { grid-template-columns: 1fr; gap: 2.4rem; margin-top: 1.5rem; }
  .va-paso { padding: 2.2rem 1.4rem 1.6rem; }
  .va-paso img { max-width: 160px; }

  .va-imagina { padding: 0 5vw 4rem; }
  .va-imagina-shell { padding: 2rem 1.4rem; gap: 1.6rem; border-radius: 24px; }
  .va-imagina-text .va-h2 { font-size: 1.6rem; }

  .va-video { padding: 0 5vw 4rem; }
  .va-video-frame { border-radius: 18px; }

  .va-faq { padding: 0 5vw 4rem; }
  .va-faq .va-h2 { margin-bottom: 1.4rem; }

  .va-footer { padding: 3rem 5vw 1.5rem; }
  .va-foot-grid { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
  .va-foot-bottom { flex-direction: column; gap: .8rem; text-align: center; }
}

@media (max-width: 420px) {
  .va-h1 { font-size: 2.2rem; }
  .va-h2 { font-size: 1.7rem; }
  .va-hero { padding: 2rem 5vw 2.5rem; }
  .va-hero-art-disc { width: 86vw; }
}
