/* ==========================================================================
   TECHY V3 — Home
   Archivo : assets/css/v3/home-v3.css
   Depende de global-v3.css (tokens) y app.css (paleta/tipografia base).
   ========================================================================== */

.v3-home { background: var(--v3-bg); overflow-x: clip; }

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.v3-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  min-height: clamp(460px, 66svh, 620px);
  background: var(--v3-bg);
}

.v3-hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(12px, 1.4vw, 18px);
  padding: clamp(64px, 6vw, 84px) clamp(24px, 6vw, 80px) clamp(28px, 3vw, 44px);
}

.v3-hero__title {
  font-size: clamp(34px, 4.2vw, 52px);
  max-width: 11ch;
}

.v3-hero__loop-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--v3-font-sans);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--v3-text);
}

.v3-hero__loop-label { color: var(--v3-muted); font-weight: 500; font-size: var(--fs-md); }

.v3-textloop {
  color: inherit;
  background: none;
}
.v3-textloop__item {
  color: transparent;
  background: var(--v3-accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.v3-hero__sub { max-width: 46ch; }

.v3-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.v3-hero__media {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 0 var(--v3-radius-lg);
}

.v3-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  animation: v3HeroKenBurns 22s ease-in-out infinite alternate;
}

@media (min-width: 901px) {
  .v3-home > .v3-hero {
    grid-template-columns: 1.1fr .9fr;
    height: clamp(700px, 74vh, 780px);
    min-height: 0;
  }

  .v3-home > .v3-hero .v3-hero__text {
    gap: 14px;
    padding: clamp(64px, 5vw, 80px) clamp(28px, 5vw, 72px) clamp(40px, 4vw, 56px);
  }

  .v3-home > .v3-hero .v3-hero__title {
    max-width: 10.5ch;
    font-size: clamp(3.8rem, 5.5vw, 6rem);
    line-height: .96;
    letter-spacing: -.03em;
  }

  .v3-home > .v3-hero .v3-hero__loop-line {
    align-items: center;
    gap: 14px;
    margin: 2px 0;
    font-size: clamp(24px, 2.2vw, 32px);
    line-height: 1.1;
  }

  .v3-home > .v3-hero .v3-hero__loop-label {
    font-size: clamp(19px, 1.55vw, 23px);
  }

  .v3-home > .v3-hero .v3-textloop {
    min-width: 10.5ch;
    min-height: 1.45em;
    padding-block: .1em;
    font-size: inherit;
    line-height: 1.1;
  }

  .v3-home > .v3-hero .v3-hero__media {
    align-self: center;
    width: 100%;
    height: clamp(680px, 72vh, 760px);
    max-height: 760px;
    min-height: 0;
  }

  .v3-home > .v3-hero .v3-hero__media picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .v3-home > .v3-hero .v3-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 38%;
  }

  .v3-home > .v3-hero .v3-hero__sub {
    max-width: 46ch;
    font-size: clamp(18px, 1.4vw, 20px);
    line-height: 1.58;
  }

  .v3-home > .v3-hero .v3-hero__ctas {
    gap: 18px;
    margin-top: 8px;
  }

  .v3-home > .v3-hero .v3-hero__ctas .v3-btn {
    min-height: 54px;
    padding: 14px 30px;
    font-size: 15px;
  }

  .v3-home > .v3-hero .v3-hero__ctas .v3-btn--primary {
    min-height: 58px;
    padding-inline: 34px;
    font-size: 16px;
  }
}

@media (min-width: 901px) {
  .v3-home > .v3-camino {
    padding-top: clamp(106px, 8vw, 138px);
  }
}

@keyframes v3HeroKenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.045); }
}

@media (max-width: 900px) {
  .v3-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
  }
  .v3-hero__text { padding: clamp(72px, 16vw, 96px) 20px 28px; text-align: left; }
  .v3-hero__title { font-size: clamp(30px, 7.6vw, 42px); max-width: none; }
  .v3-hero__media { border-radius: 0; height: 44svh; }
}

/* --------------------------------------------------------------------------
   ELIGE TU CAMINO — Chroma Grid
   -------------------------------------------------------------------------- */
.v3-camino__title { font-size: var(--fs-3xl); }

.v3-camino__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--v3-gap);
}

.v3-chroma-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 460px;
  border-radius: var(--v3-radius);
  overflow: hidden;
  text-decoration: none;
  isolation: isolate;
  box-shadow: var(--v3-shadow);
  transition: transform var(--v3-d2) var(--v3-ease), box-shadow var(--v3-d2) var(--v3-ease);
}

.v3-chroma-card:hover { transform: translateY(-6px); box-shadow: var(--v3-shadow-lg); }

.v3-chroma-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.v3-chroma-card__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--v3-d3) var(--v3-ease);
}
.v3-chroma-card:hover .v3-chroma-card__image img { transform: scale(1.05); }

.v3-chroma-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.82) 100%);
}

.v3-chroma-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  z-index: 3;
  border-radius: inherit;
  padding: 1.5px;
  background: radial-gradient(220px circle at var(--v3-spot-x, 50%) var(--v3-spot-y, 50%), var(--v3-accent-a), var(--v3-accent-b), transparent 70%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--v3-d2) var(--v3-ease);
  pointer-events: none;
}
.v3-chroma-card:hover::after { opacity: 1; }

.v3-chroma-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: clamp(20px, 2.4vw, 32px);
  color: var(--white);
}

.v3-chroma-card__label {
  font-family: var(--v3-font-serif);
  font-size: var(--fs-xl);
  font-weight: 700;
}
.v3-chroma-card__text { font-size: var(--fs-sm); color: rgba(255,255,255,.82); max-width: 30ch; }
.v3-chroma-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 10px; font-size: var(--fs-sm); font-weight: 700;
}
.v3-chroma-card__cta i { transition: transform var(--v3-d2) var(--v3-ease); }
.v3-chroma-card:hover .v3-chroma-card__cta i { transform: translateX(4px); }

@media (max-width: 900px) {
  .v3-camino__grid { grid-template-columns: 1fr; }
  .v3-chroma-card { min-height: 340px; }
}

/* --------------------------------------------------------------------------
   TECNICA REAL — Scroll storytelling (solo resultados finales)
   -------------------------------------------------------------------------- */
.v3-scroll-expand .v3-lede { color: rgba(255,255,255,.72); }

.v3-scroll-expand__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}

.v3-scroll-expand__text {
  position: sticky;
  top: clamp(96px, 12vh, 140px);
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.3vw, 18px);
  padding-block: clamp(44px, 7vh, 72px) clamp(20px, 3vh, 32px);
}

.v3-scroll-expand__dynamic {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  min-height: clamp(190px, 23vh, 235px);
  width: 100%;
  max-width: 600px;
  padding-top: 4px;
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition: opacity 420ms var(--v3-ease), filter 420ms var(--v3-ease), transform 420ms var(--v3-ease);
  will-change: opacity, filter, transform;
}

.v3-scroll-expand__dynamic.is-changing {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(-7px);
}

.v3-scroll-expand__dynamic-eyebrow {
  font-family: var(--v3-font-sans);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.v3-scroll-expand__dynamic-message {
  margin: 0;
  font-family: var(--v3-font-serif);
  font-size: clamp(2.4rem, 3.5vw, 4rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.025em;
  color: var(--white);
}

.v3-scroll-expand__media {
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 5vh, 64px);
  padding-block: clamp(48px, 7vh, 80px) clamp(32px, 5vh, 56px);
}

.v3-scroll-expand__item {
  position: relative;
  width: min(420px, 88%);
  aspect-ratio: 3 / 4;
  margin-inline: auto;
  border-radius: var(--v3-radius);
  overflow: hidden;
  box-shadow: var(--v3-shadow-lg);
  --v3-reveal-p: max(0, min(1, calc((var(--v3-expand-progress, 0) - var(--v3-reveal-at, 0)) * 5)));
  opacity: var(--v3-reveal-p);
  transform: translateY(calc((1 - var(--v3-reveal-p)) * 56px)) scale(calc(0.92 + var(--v3-reveal-p) * 0.08));
}
.v3-scroll-expand__item img { width: 100%; height: 100%; object-fit: cover; }

.v3-scroll-expand__tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: .03em;
  color: #fff;
  background: rgba(0,0,0,.55);
  padding: 6px 12px;
  border-radius: var(--r-pill);
}

.v3-scroll-expand.is-expanded .v3-scroll-expand__item {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .v3-scroll-expand__inner { grid-template-columns: 1fr; }
  .v3-scroll-expand__text { position: static; padding-block: clamp(56px, 14vw, 80px) 24px; }
  .v3-scroll-expand__media { padding-block: 12px clamp(56px, 12vw, 96px); gap: clamp(40px, 10vw, 64px); }
  .v3-scroll-expand__item { width: min(360px, 92%); }
}

@media (prefers-reduced-motion: reduce) {
  .v3-scroll-expand__dynamic {
    transition: none !important;
    filter: none !important;
    transform: none !important;
  }
}

/* --------------------------------------------------------------------------
   SERVICIOS — Accordion Gallery
   -------------------------------------------------------------------------- */
.v3-accordion {
  display: flex;
  gap: 12px;
  height: 480px;
}

.v3-accordion__panel {
  position: relative;
  flex: 1;
  border-radius: var(--v3-radius);
  overflow: hidden;
  transition: flex var(--v3-d3) var(--v3-ease);
  background: var(--ink);
}
.v3-accordion__panel.is-active { flex: 3.4; }

.v3-accordion__trigger {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: transparent;
  display: flex;
  align-items: flex-start;
}

.v3-accordion__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.v3-accordion__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--v3-d3) var(--v3-ease);
}
.v3-accordion__panel.is-active .v3-accordion__image img { transform: scale(1.02); }

.v3-accordion__trigger::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.05) 32%, rgba(0,0,0,.1) 58%, rgba(0,0,0,.85) 100%);
}

.v3-accordion__name {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-family: var(--v3-font-serif);
  font-size: var(--fs-lg);
  font-weight: 700;
  padding: 24px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.v3-accordion__panel.is-active .v3-accordion__name {
  writing-mode: horizontal-tb;
}

.v3-accordion__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 0 28px 28px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--v3-d2) var(--v3-ease), transform var(--v3-d2) var(--v3-ease);
  pointer-events: none;
}
.v3-accordion__panel.is-active .v3-accordion__body {
  opacity: 1; transform: none; pointer-events: auto;
}

.v3-accordion__text { font-size: var(--fs-sm); color: rgba(255,255,255,.85); max-width: 34ch; }
.v3-accordion__cta {
  display: inline-flex; align-items: center; gap: 8px; width: fit-content;
  color: var(--white); font-weight: 700; font-size: var(--fs-sm);
  text-decoration: none;
}

.v3-mobile-touch-hint { display: none; }

@media (max-width: 780px) {
  .v3-accordion { flex-direction: column; height: auto; }
  .v3-accordion__panel { height: 96px; flex: none; }
  .v3-accordion__panel.is-active { height: 340px; flex: none; }
  .v3-accordion__name { writing-mode: horizontal-tb; padding: 20px; }

  .v3-mobile-touch-hint {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: -18px 0 18px;
    color: var(--v3-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
  }

  .v3-mobile-touch-hint::before {
    content: '\f25a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--v3-accent-b);
  }

  .v3-home .v3-hero__loop-line {
    align-items: center;
    gap: 10px;
    line-height: 1.1;
  }

  .v3-home .v3-hero__loop-label {
    flex: 0 0 auto;
    line-height: 1.1;
  }

  .v3-home .v3-textloop {
    align-self: center;
    min-height: 1.4em;
    padding-block: .08em;
    line-height: 1.1;
  }

  .v3-home .v3-textloop__item { line-height: 1.1; }

  .v3-home .v3-servicios .v3-accordion__panel { height: 118px; }
  .v3-home .v3-servicios .v3-accordion__panel.is-active { height: 420px; }
  .v3-home .v3-servicios .v3-accordion__image img { object-fit: cover; }
  .v3-home .v3-servicios .v3-accordion__panel:nth-child(1) .v3-accordion__image img { object-position: 50% 45%; }
  .v3-home .v3-servicios .v3-accordion__panel:nth-child(2) .v3-accordion__image img { object-position: 50% 40%; }
  .v3-home .v3-servicios .v3-accordion__panel:nth-child(3) .v3-accordion__image img { object-position: 50% 34%; }
  .v3-home .v3-servicios .v3-accordion__panel.is-active .v3-accordion__image img { transform: none; }
}

/* --------------------------------------------------------------------------
   PRODUCTOS DESTACADOS
   -------------------------------------------------------------------------- */
.v3-productos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: var(--v3-gap);
}

.v3-product-card {
  display: flex;
  flex-direction: column;
  background: var(--v3-surface);
  border-radius: var(--v3-radius);
  overflow: hidden;
  border: 1px solid var(--v3-line);
  transition: box-shadow var(--v3-d2) var(--v3-ease), transform var(--v3-d2) var(--v3-ease);
}
.v3-product-card:hover { transform: translateY(-4px); box-shadow: var(--v3-shadow); }

.v3-product-card--hero {
  grid-column: span 2;
  grid-row: span 1;
  flex-direction: row;
}
.v3-product-card--hero .v3-product-card__image { flex: 1.1; }
.v3-product-card--hero .v3-product-card__body { flex: 0.9; padding: 20px; }

.v3-product-card__image { display: block; aspect-ratio: 1 / 1; overflow: hidden; background: var(--surface-1); }
.v3-product-card--hero .v3-product-card__image { aspect-ratio: auto; }
.v3-product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--v3-d3) var(--v3-ease); }
.v3-product-card:hover .v3-product-card__image img { transform: scale(1.04); }

.v3-product-card__body { padding: 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.v3-product-card__name { font-size: var(--fs-base); font-weight: 700; }
.v3-product-card__name a { color: var(--v3-text); text-decoration: none; }
.v3-product-card__price { font-size: var(--fs-sm); color: var(--v3-muted); font-weight: 600; }
.v3-product-card__cta { margin-top: auto; align-self: flex-start; padding: 10px 18px; font-size: var(--fs-xs); }

@media (max-width: 960px) {
  .v3-productos__grid { grid-template-columns: repeat(2, 1fr); }
  .v3-product-card--hero { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 560px) {
  .v3-home #v3-productos .v3-productos__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 12px;
  }
  .v3-product-card--hero { flex-direction: column; }
  .v3-product-card--hero .v3-product-card__image { aspect-ratio: 4 / 3; flex: none; }
  .v3-product-card--hero .v3-product-card__body { flex: none; }

  .v3-home #v3-productos .v3-product-card:not(.v3-product-card--hero) {
    min-width: 0;
    min-height: 0;
    height: auto;
  }

  .v3-home #v3-productos .v3-product-card:not(.v3-product-card--hero) .v3-product-card__image {
    flex: 0 0 auto;
    min-height: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  .v3-home #v3-productos .v3-product-card:not(.v3-product-card--hero) .v3-product-card__body {
    flex: 0 0 auto;
    min-width: 0;
    padding: 12px;
    gap: 7px;
  }

  .v3-home #v3-productos .v3-product-card:not(.v3-product-card--hero) .v3-product-card__name {
    min-height: 2.6em;
    font-size: 13px;
    line-height: 1.3;
  }

  .v3-home #v3-productos .v3-product-card:not(.v3-product-card--hero) .v3-product-card__price {
    margin: 0;
    font-size: 12px;
  }

  .v3-home #v3-productos .v3-product-card:not(.v3-product-card--hero) .v3-product-card__cta {
    min-height: 40px;
    max-width: 100%;
    margin-top: 4px;
    padding: 8px 12px;
    font-size: 11px;
  }
}

/* --------------------------------------------------------------------------
   CURSOS — Depth Carousel
   -------------------------------------------------------------------------- */
.v3-cursos .v3-lede { color: rgba(255,255,255,.72); }

.v3-depth-carousel {
  position: relative;
  height: auto;
  margin-top: 12px;
}

.v3-depth-carousel__track {
  position: relative;
  width: 100%;
  height: clamp(340px, 42vw, 460px);
  perspective: 1400px;
}

.v3-depth-carousel__card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(320px, 62vw);
  height: 100%;
  border-radius: var(--v3-radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--v3-shadow-lg);
  transform:
    translate(-50%, -50%)
    translateX(calc(var(--v3-depth-offset, 0) * 62%))
    scale(calc(1 - min(abs(var(--v3-depth-offset, 0)), 2) * 0.14))
    rotateY(calc(var(--v3-depth-offset, 0) * -8deg));
  z-index: calc(10 - abs(var(--v3-depth-offset, 0)));
  opacity: calc(1 - min(abs(var(--v3-depth-offset, 0)), 3) * 0.32);
  transition: transform var(--v3-d3) var(--v3-ease), opacity var(--v3-d3) var(--v3-ease), z-index 0s;
}

.v3-depth-carousel__card img { width: 100%; height: 100%; object-fit: cover; }

.v3-depth-carousel__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px;
  background: linear-gradient(0deg, rgba(0,0,0,.85), transparent);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.v3-depth-carousel__type { font-size: var(--fs-2xs); letter-spacing: .1em; text-transform: uppercase; color: var(--gold-soft); }
.v3-depth-carousel__name { font-family: var(--v3-font-serif); font-size: var(--fs-md); font-weight: 700; }

.v3-depth-carousel__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.v3-depth-carousel__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: background var(--v3-d2) var(--v3-ease), border-color var(--v3-d2) var(--v3-ease), transform var(--v3-d2) var(--v3-ease), color var(--v3-d2) var(--v3-ease);
}
.v3-depth-carousel__btn:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: var(--ink);
  transform: translateY(-2px);
}

.v3-cursos__cta { display: flex; justify-content: center; margin-top: clamp(28px, 4vw, 44px); }

/* --------------------------------------------------------------------------
   RESULTADOS
   -------------------------------------------------------------------------- */
.v3-resultados__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--v3-gap);
  align-items: start;
}

.v3-resultados__compare {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--v3-radius);
  overflow: hidden;
  box-shadow: var(--v3-shadow);
}
.v3-resultados__compare-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.v3-resultados__tag {
  position: absolute;
  bottom: 16px;
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,.55);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  pointer-events: none;
}
.v3-resultados__tag--before { left: 16px; }
.v3-resultados__tag--after { right: 16px; }

.v3-resultados__side { display: flex; flex-direction: column; gap: var(--v3-gap); }
.v3-resultados__strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.v3-resultados__strip img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--v3-radius-sm);
}

.v3-resultados__quote {
  background: var(--v3-bg);
  border-left: 3px solid var(--v3-accent-a);
  border-radius: 0 var(--v3-radius-sm) var(--v3-radius-sm) 0;
  padding: 20px 24px;
}
.v3-resultados__quote p { font-family: var(--v3-font-serif); font-size: var(--fs-md); color: var(--v3-text); }
.v3-resultados__quote cite { display: block; margin-top: 10px; font-style: normal; font-size: var(--fs-sm); color: var(--v3-muted); }

@media (max-width: 860px) {
  .v3-resultados__grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   CIERRE + ECOSISTEMA
   -------------------------------------------------------------------------- */
.v3-cierre__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(20px, 3vw, 32px);
  margin-bottom: clamp(40px, 6vw, 72px);
}
.v3-cierre__title { font-size: var(--fs-3xl); }
.v3-cierre__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

.v3-cierre__ecosystem {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--v3-gap);
  padding-top: clamp(32px, 5vw, 56px);
  border-top: 1px solid var(--v3-line);
}

.v3-ecosystem-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 18px;
  border-radius: var(--v3-radius-sm);
  text-decoration: none;
  color: var(--v3-text);
  transition: background var(--v3-d2) var(--v3-ease);
}
.v3-ecosystem-item:hover { background: var(--v3-surface); }
.v3-ecosystem-item img { width: 64px; height: 64px; object-fit: contain; flex-shrink: 0; }
.v3-ecosystem-item__text { display: flex; flex-direction: column; gap: 3px; }
.v3-ecosystem-item__text strong { font-size: var(--fs-md); }
.v3-ecosystem-item__text small { font-size: var(--fs-sm); color: var(--v3-muted); }

@media (max-width: 860px) {
  .v3-cierre__ecosystem { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .v3-cierre__ecosystem { grid-template-columns: 1fr; }
}
