/* ═══════════════════════════════════════════════════════════
   BROWORKSHOP · Página de inicio
   ═══════════════════════════════════════════════════════════ */

/* ───────────── Banners ───────────── */
.hero { position: relative; overflow: hidden; background: var(--bg); }
.hero::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; height: 12px; opacity: .5; background-size: 24px 12px; }
.hero::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='28' viewBox='0 0 56 28'%3E%3Cg fill='none' stroke-width='3'%3E%3Cpath d='M0 14 14 2l14 12 14-12 14 12' stroke='%23FCD116'/%3E%3Cpath d='M0 26 14 14l14 12 14-12 14 12' stroke='%235C82FF'/%3E%3C/g%3E%3Cg fill='%23F0506E'%3E%3Cpath d='m14 20 3 3-3 3-3-3zM42 20l3 3-3 3-3-3z'/%3E%3C/g%3E%3C/svg%3E"); }
.hero__slides { display: grid; }
.slide {
  grid-area: 1 / 1; position: relative; isolation: isolate;
  display: flex; align-items: center; min-height: clamp(580px, 80vh, 760px); padding: 40px 0 120px;
  background:
    radial-gradient(900px 540px at 78% 40%, rgba(255, 255, 255, .95), transparent 62%),
    linear-gradient(125deg, var(--tone) 0%, #f7f9ff 58%, var(--tone2, var(--tone)) 100%);
  opacity: 0; visibility: hidden;
  transition: opacity .9s var(--ease), visibility 0s linear .9s;
}
.slide.is-active { z-index: 1; opacity: 1; visibility: visible; transition: opacity .9s var(--ease), visibility 0s; }
.slide__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(50px); opacity: .75; animation: drift 16s ease-in-out infinite alternate; }
.blob.b1 { left: -8%; top: -18%; width: min(38vw, 520px); aspect-ratio: 1; background: #fff; }
.blob.b2 { right: -6%; bottom: -22%; width: min(32vw, 440px); aspect-ratio: 1; background: var(--tone2, var(--lav)); animation-duration: 19s; }
.blob.b3 { left: 40%; bottom: 4%; width: min(16vw, 220px); aspect-ratio: 1; background: rgba(252, 209, 22, .3); animation-duration: 13s; }

.slide__inner { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center; gap: clamp(24px, 4vw, 56px); }
.slide__copy { display: flex; flex-direction: column; align-items: flex-start; }
.slide__copy > * { opacity: 0; transform: translateY(26px); transition: opacity .6s var(--ease), transform .75s var(--ease); }
.slide.is-active .slide__copy > * { opacity: 1; transform: none; }
.slide.is-active .slide__copy > :nth-child(1) { transition-delay: .12s; }
.slide.is-active .slide__copy > :nth-child(2) { transition-delay: .22s; }
.slide.is-active .slide__copy > :nth-child(3) { transition-delay: .32s; }
.slide.is-active .slide__copy > :nth-child(4) { transition-delay: .42s; }
.slide.is-leaving .slide__copy > * { opacity: 0; transform: translateY(-18px); transition-duration: .4s; transition-delay: 0s; }
.slide__title { margin-top: 18px; }
.slide__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.slide__visual { position: relative; min-width: 0; }
.slide__visual:empty::before {
  content: ''; display: block; width: min(100%, 460px); aspect-ratio: 1; margin: 0 auto; border-radius: 50%;
  background: linear-gradient(90deg, rgba(255, 255, 255, .45) 25%, rgba(255, 255, 255, .95) 37%, rgba(255, 255, 255, .45) 63%) 0 0 / 400% 100%;
  animation: shimmer 1.4s ease infinite;
}
.stage { position: relative; width: min(100%, 500px); aspect-ratio: 1; margin: 0 auto; }
.stage__ring { position: absolute; inset: 1%; border: 2px dashed rgba(47, 91, 234, .28); border-radius: 50%; animation: spin 50s linear infinite; }
.stage__main {
  position: absolute; inset: 10%; display: grid; place-items: center; border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, #fff 0 48%, var(--tone) 100%);
  box-shadow: 0 50px 90px -50px rgba(36, 73, 207, .55), inset 0 -18px 40px rgba(47, 91, 234, .08);
  opacity: 0; transform: scale(.8) rotate(-8deg);
  translate: calc(var(--px, 0) * 10px) calc(var(--py, 0) * 10px);
  transition: transform 1.1s var(--spring) .2s, opacity .6s .2s, translate .6s var(--ease);
}
.slide.is-active .stage__main { opacity: 1; transform: none; }
.stage__main img { width: 74%; height: 74%; object-fit: contain; mix-blend-mode: multiply; }
.float { animation: float 5s ease-in-out infinite; }
.float-slow { animation: float 6.5s ease-in-out .6s infinite; }
.float-rev { animation: float-rev 5.5s ease-in-out infinite; }

.stage__card {
  position: absolute; display: flex; flex-direction: column; align-items: center; gap: 2px;
  width: 30%; padding: 10px 10px 9px; border-radius: 22px; background: #fff; box-shadow: var(--shadow-lg);
  color: var(--navy); font-size: .84rem; font-weight: 800; text-decoration: none;
  opacity: 0; translate: calc(var(--px, 0) * -26px) calc(var(--py, 0) * -20px);
  transition: transform .9s var(--spring), opacity .5s, translate .6s var(--ease), scale .35s var(--spring);
}
.stage__card img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.stage__card:hover { scale: 1.07; }
.stage__card--a { left: -3%; top: 7%; transform: translate(-30px, 20px) rotate(-16deg) scale(.8); }
.stage__card--b { right: -2%; bottom: 7%; transform: translate(30px, 20px) rotate(14deg) scale(.8); translate: calc(var(--px, 0) * 28px) calc(var(--py, 0) * 22px); }
.slide.is-active .stage__card { opacity: 1; transition-delay: .45s, .45s, 0s, 0s; }
.slide.is-active .stage__card--a { transform: rotate(-7deg); }
.slide.is-active .stage__card--b { transform: rotate(6deg); transition-delay: .6s, .6s, 0s, 0s; }
.stage__price {
  position: absolute; right: 3%; top: 10%; display: flex; flex-direction: column; gap: 1px;
  padding: 10px 16px; border-radius: 18px; background: var(--navy); color: #fff; text-decoration: none; box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(-20px) scale(.8);
  transition: transform .8s var(--spring) .7s, opacity .4s .7s;
}
.stage__price small { font-size: .7rem; opacity: .75; }
.stage__price b { font-size: 1.22rem; letter-spacing: -.02em; }
.slide.is-active .stage__price { opacity: 1; transform: rotate(4deg); }
.stage__sticker {
  position: absolute; left: 5%; bottom: 3%; display: grid; place-items: center;
  width: 112px; height: 112px; border-radius: 50%; background: var(--col-yellow); color: var(--navy);
  box-shadow: 0 16px 30px -14px rgba(160, 120, 0, .7);
  transform: scale(0) rotate(-90deg); transition: transform .9s var(--spring) .85s;
}
.slide.is-active .stage__sticker { transform: none; }
.stage__sticker svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 16s linear infinite; }
.stage__sticker text { fill: var(--navy); font: 800 9.6px var(--font); letter-spacing: 1.5px; text-transform: uppercase; }
.stage__sticker b { font-size: 1.3rem; font-weight: 800; line-height: 1; text-align: center; }
.stage__sticker b small { display: block; font-size: .55rem; letter-spacing: .1em; text-transform: uppercase; }
.stage__sticker .i { width: 32px; height: 32px; }
.flag-dot { display: block; width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(180deg, var(--col-yellow) 0 50%, var(--col-blue) 50% 75%, var(--col-red) 75%); box-shadow: 0 0 0 3px #fff, 0 6px 12px -4px rgba(0, 0, 0, .3); }

.hero__controls { position: absolute; left: 0; right: 0; bottom: 42px; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.hero__dots { display: flex; gap: 4px; }
.hero__dot { position: relative; display: grid; align-items: center; width: 40px; height: 28px; padding: 0; border: 0; background: none; cursor: pointer; transition: width .5s var(--ease); }
.hero__dot .bar { position: relative; display: block; overflow: hidden; height: 7px; border-radius: 999px; background: rgba(15, 30, 69, .15); transition: background-color .3s; }
.hero__dot:hover .bar { background: rgba(15, 30, 69, .28); }
.hero__dot.is-active { width: 70px; }
.hero__dot i { position: absolute; inset: 0; border-radius: inherit; background: var(--blue); transform: scaleX(0); transform-origin: left; }
.hero__dot.is-active i { animation: dot-fill var(--dur, 6.5s) linear forwards; }
.hero.is-paused .hero__dot i { animation-play-state: paused; }
.hero.is-stopped .hero__dot.is-active i { animation: none; transform: scaleX(1); }
.hero__arrows { display: flex; gap: 8px; }
.hero__arrows .icon-btn { background: rgba(255, 255, 255, .85); box-shadow: var(--shadow-sm); }
.hero__arrows .icon-btn:hover { background: #fff; }

@media (max-width: 860px) {
  .slide { align-items: flex-start; min-height: auto; padding: 18px 0 104px; }
  .slide__inner { grid-template-columns: 1fr; gap: 6px; }
  .slide__visual { order: -1; }
  .stage { width: min(80vw, 350px); }
  .slide__copy { align-items: center; text-align: center; }
  .slide__copy .lead { margin-inline: auto; }
  .slide__cta { justify-content: center; }
  .slide__cta .btn--lg { min-height: 50px; padding-inline: 1.3em; font-size: .95rem; }
  .stage__sticker { width: 86px; height: 86px; }
  .stage__sticker text { font-size: 8.4px; }
  .stage__sticker b { font-size: 1.05rem; }
  .flag-dot { width: 30px; height: 30px; }
  .stage__price { padding: 7px 12px; }
  .stage__price b { font-size: 1rem; }
  .hero__controls { bottom: 36px; justify-content: center; }
  .hero__arrows .icon-btn:not([data-hero-toggle]) { display: none; }
}

/* ───────────── Confianza ───────────── */
.trust { position: relative; z-index: 4; margin-top: -58px; }
.trust__list {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; padding: 10px;
  border: 1px solid var(--line); border-radius: 28px; list-style: none;
  background: rgba(255, 255, 255, .94); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
}
.trust__list li { display: flex; align-items: center; gap: 14px; padding: 12px 14px; border-radius: 20px; transition: background-color .25s; }
.trust__list li:hover { background: var(--bg); }
.trust__icon { display: grid; flex: none; place-items: center; width: 50px; height: 50px; border-radius: 16px; background: var(--tone); color: var(--tone-ink); transition: transform .5s var(--spring); }
.trust__list li:hover .trust__icon { transform: rotate(-10deg) scale(1.08); }
.trust__list b { display: block; color: var(--navy); font-size: .95rem; line-height: 1.3; }
.trust__list span { color: var(--muted); font-size: .82rem; }
@media (max-width: 1000px) { .trust__list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) {
  .trust { margin-top: -48px; }
  .trust__list { padding: 6px; border-radius: 22px; }
  .trust__list li { flex-direction: column; align-items: flex-start; gap: 8px; padding: 10px; }
  .trust__icon { width: 40px; height: 40px; border-radius: 13px; }
  .trust__list b { font-size: .86rem; }
  .trust__list span { font-size: .76rem; }
}

/* ───────────── Categorías ───────────── */
.cats-bento { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: minmax(200px, auto); gap: 16px; }
.sk-tile { min-height: 200px; border-radius: 26px; }
.sk-tile.cat--big { grid-column: span 2; grid-row: span 2; }
.cat {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 200px; padding: 22px; border-radius: 28px;
  background: var(--tone); color: var(--navy); text-decoration: none;
  transition: transform .55s var(--spring), box-shadow .4s var(--ease);
}
.cat::before { content: ''; position: absolute; z-index: -1; right: -18%; bottom: -30%; width: 82%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255, 255, 255, .95), rgba(255, 255, 255, 0) 70%); transition: transform .8s var(--ease); }
.cat:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat:hover::before { transform: scale(1.25); }
.cat--big { grid-column: span 2; grid-row: span 2; padding: 32px; }
.cat__text { position: relative; z-index: 2; max-width: 62%; }
.cat--big .cat__text { max-width: 55%; }
.cat__icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 15px; background: #fff; color: var(--tone-ink); box-shadow: var(--shadow-sm); transition: transform .55s var(--spring); }
.cat:hover .cat__icon { transform: rotate(-12deg) scale(1.1); }
.cat h3 { margin-top: 14px; font-size: 1.14rem; }
.cat--big h3 { margin-top: 20px; font-size: clamp(1.7rem, 3vw, 2.3rem); }
.cat p { max-width: 26ch; margin-top: 8px; color: var(--ink); }
.cat__count { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; padding: 6px 12px; border-radius: 999px; background: rgba(255, 255, 255, .8); color: var(--tone-ink); font-size: .8rem; font-weight: 800; white-space: nowrap; }
.cat__count .i { width: 14px; height: 14px; transition: transform .35s var(--spring); }
.cat:hover .cat__count .i { transform: translateX(4px); }
/* Sin z-index: así las fotos se funden (multiply) con el fondo pastel de la tarjeta */
.cat__imgs { position: absolute; right: -3%; bottom: -3%; width: 56%; aspect-ratio: 1; }
.cat__img { position: absolute; object-fit: contain; mix-blend-mode: multiply; transition: transform .9s var(--ease); }
.cat__img--1 { inset: 0; width: 100%; height: 100%; }
.cat:hover .cat__img--1 { transform: translate(-4%, -7%) rotate(-6deg) scale(1.08); }
.cat--big .cat__imgs { right: -1%; bottom: -1%; width: 66%; }
.cat--big .cat__img--1 { inset: 14% 0 0 20%; width: 80%; height: 86%; }
.cat--big .cat__img--2 { left: -4%; top: 30%; width: 42%; height: 42%; }
.cat--big .cat__img--3 { right: 4%; top: -2%; width: 36%; height: 36%; }
.cat--big:hover .cat__img--2 { transform: translate(-8%, -10%) rotate(10deg); }
.cat--big:hover .cat__img--3 { transform: translate(6%, -8%) rotate(-12deg); }
.cat--all { background: var(--navy); color: #fff; }
.cat--all::before { background: radial-gradient(circle, rgba(92, 130, 255, .55), rgba(92, 130, 255, 0) 70%); }
.cat--all h3 { color: #fff; }
.cat--all .cat__text { max-width: 100%; }
.cat--all .cat__icon { background: rgba(255, 255, 255, .12); color: var(--col-yellow); box-shadow: none; }
.cat--all .cat__count { background: var(--col-yellow); color: var(--navy); }
.cat__chips { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.cat__chips span { padding: 4px 9px; border-radius: 999px; background: rgba(255, 255, 255, .1); font-size: .72rem; font-weight: 600; }
@media (max-width: 900px) {
  .cats-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: minmax(170px, auto); gap: 12px; }
  .cat--big, .sk-tile.cat--big { grid-column: span 2; grid-row: span 1; min-height: 250px; }
  .cat--all { grid-column: span 2; }
}
@media (max-width: 480px) {
  .cat { min-height: 168px; padding: 16px; border-radius: 22px; }
  .cat--big { padding: 22px; }
  .cat h3 { font-size: 1rem; }
  .cat__text { max-width: 100%; }
  .cat__imgs { width: 58%; right: -6%; bottom: -6%; }
  .cat__count { padding: 5px 9px; font-size: .72rem; }
  .cat__icon { width: 40px; height: 40px; }
}

/* ───────────── Panel de productos del inicio ───────────── */
[data-tab-panel] { transition: opacity .2s, transform .2s; }
[data-tab-panel].is-switching { opacity: 0; transform: translateY(10px); }

/* ───────────── Oferta destacada ───────────── */
.deal {
  position: relative; isolation: isolate; overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); align-items: center; gap: 32px;
  padding: clamp(28px, 5vw, 64px); border-radius: 38px; color: #fff;
  background:
    radial-gradient(600px 420px at 82% 50%, rgba(92, 130, 255, .6), transparent 60%),
    linear-gradient(135deg, #16275e 0%, #2346c8 58%, #3b66f0 100%);
  box-shadow: var(--shadow-lg);
}
.deal::before { content: ''; position: absolute; inset: 0; z-index: -1; opacity: .1; background-size: 48px 24px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='28' viewBox='0 0 56 28'%3E%3Cg fill='none' stroke-width='3' stroke='%23fff'%3E%3Cpath d='M0 14 14 2l14 12 14-12 14 12'/%3E%3Cpath d='M0 26 14 14l14 12 14-12 14 12'/%3E%3C/g%3E%3C/svg%3E"); }
.eyebrow--glass { background: rgba(255, 255, 255, .14); color: #fff; }
.deal__cat { margin-top: 20px; color: rgba(255, 255, 255, .78); font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.deal__title { max-width: 22ch; margin-top: 8px; color: #fff; font-size: clamp(1.6rem, 3.2vw, 2.4rem); line-height: 1.12; }
.deal__prices { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px; margin-top: 20px; }
.deal__prices b { font-size: clamp(2.1rem, 4.4vw, 3.2rem); letter-spacing: -.03em; line-height: 1; }
.deal__prices s { color: rgba(255, 255, 255, .72); font-size: 1.1rem; }
.deal__save { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; padding: 8px 14px; border-radius: 999px; background: rgba(252, 209, 22, .16); color: var(--col-yellow); font-weight: 700; }
.deal__save .i { width: 18px; height: 18px; }
.deal__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn--glass { --fg: #fff; background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .35); }
.btn--glass:hover { background: rgba(255, 255, 255, .2); border-color: #fff; }
.deal__visual { position: relative; justify-self: center; width: 100%; max-width: 440px; aspect-ratio: 1; }
.deal__disc { position: absolute; inset: 9%; display: grid; place-items: center; border-radius: 50%; background: radial-gradient(circle at 50% 45%, #fff 0 55%, #e6edff 100%); box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .5); }
.deal__disc img { width: 74%; height: 74%; object-fit: contain; mix-blend-mode: multiply; }
.deal__orbit { position: absolute; border: 1.5px dashed rgba(255, 255, 255, .3); border-radius: 50%; animation: spin 36s linear infinite; }
.deal__orbit::after { content: ''; position: absolute; top: -6px; left: 50%; width: 12px; height: 12px; border-radius: 50%; background: var(--col-yellow); box-shadow: 0 0 16px rgba(252, 209, 22, .9); }
.deal__orbit.o1 { inset: 0; }
.deal__orbit.o2 { inset: -7%; animation-duration: 52s; animation-direction: reverse; }
.deal__orbit.o2::after { background: #ff7a93; box-shadow: 0 0 16px rgba(255, 122, 147, .9); }
.deal__burst { position: absolute; top: 2%; right: 0; z-index: 2; isolation: isolate; display: grid; place-content: center; width: 122px; height: 122px; color: #fff; text-align: center; line-height: 1; }
.deal__burst::before { content: ''; position: absolute; inset: 0; z-index: -1; background: var(--sale); animation: spin 20s linear infinite; clip-path: polygon(50% 0%, 66.1% 11.2%, 85.4% 14.6%, 88.8% 33.9%, 100% 50%, 88.8% 66.1%, 85.4% 85.4%, 66.1% 88.8%, 50% 100%, 33.9% 88.8%, 14.6% 85.4%, 11.2% 66.1%, 0% 50%, 11.2% 33.9%, 14.6% 14.6%, 33.9% 11.2%); }
.deal__burst small { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.deal__burst b { font-size: 1.9rem; letter-spacing: -.03em; }
@media (max-width: 860px) {
  .deal { grid-template-columns: 1fr; gap: 12px; text-align: center; border-radius: 30px; }
  .deal__visual { order: -1; max-width: 300px; }
  .deal__title { margin-inline: auto; }
  .deal__prices, .deal__cta { justify-content: center; }
  .deal__burst { width: 94px; height: 94px; }
  .deal__burst b { font-size: 1.45rem; }
}

/* ───────────── Imágenes en movimiento ───────────── */
.pm { overflow: hidden; padding-bottom: clamp(40px, 6vw, 72px); }
.pm .marquee + .marquee { margin-top: 16px; }
.pm__item { position: relative; isolation: isolate; overflow: hidden; display: block; width: 210px; aspect-ratio: 1; margin-right: 16px; border-radius: 28px; background: var(--tone); transition: transform .5s var(--spring); }
.pm__item img { position: absolute; inset: 12%; width: 76%; height: 76%; object-fit: contain; mix-blend-mode: multiply; transition: transform .7s var(--ease); }
.pm__item:hover { transform: translateY(-6px) rotate(-2deg); }
.pm__item:hover img { transform: scale(1.1); }
.pm__label { position: absolute; left: 10px; right: 10px; bottom: 10px; display: flex; justify-content: space-between; gap: 8px; padding: 8px 10px; border-radius: 14px; background: rgba(255, 255, 255, .92); color: var(--navy); font-size: .74rem; font-weight: 800; transform: translateY(140%); transition: transform .45s var(--spring); }
.pm__label span { overflow: hidden; font-weight: 600; white-space: nowrap; text-overflow: ellipsis; }
.pm__item:hover .pm__label, .pm__item:focus-visible .pm__label { transform: none; }
@media (max-width: 640px) { .pm__item { width: 140px; margin-right: 10px; border-radius: 22px; } }

/* ───────────── Colombia ───────────── */
.colombia { overflow: hidden; background: linear-gradient(180deg, var(--bg), #fff); }
.colombia__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); align-items: center; gap: 48px; }
.stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; max-width: 520px; margin-top: 30px; }
.stat { padding: 18px 20px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); transition: transform .45s var(--spring), box-shadow .3s; }
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stat b { display: block; color: var(--navy); font-size: clamp(1.9rem, 3.4vw, 2.6rem); letter-spacing: -.03em; line-height: 1.05; font-variant-numeric: tabular-nums; }
.stat span { color: var(--muted); font-size: .9rem; font-weight: 600; }
.stat:nth-child(1) b { color: var(--blue); }
.stat:nth-child(2) b { color: var(--lav-ink); }
.stat:nth-child(3) b { color: var(--peach-ink); }
.stat:nth-child(4) b { color: var(--ok); }

.route { position: relative; overflow: hidden; justify-self: center; width: 100%; max-width: 440px; aspect-ratio: 400 / 420; border-radius: 38px; background: linear-gradient(160deg, var(--sky), var(--lav) 60%, var(--butter)); box-shadow: var(--shadow-lg); }
.route > svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.route__path { fill: none; stroke: var(--blue); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 10 10; animation: march 1.4s linear infinite; }
.route__pin { position: absolute; display: flex; align-items: center; gap: 6px; padding: 8px 13px 8px 9px; border-radius: 999px; background: #fff; color: var(--navy); font-size: .85rem; font-weight: 800; box-shadow: var(--shadow); }
.route__pin .i { width: 18px; height: 18px; color: var(--sale); animation: bounce 2s var(--ease) infinite; }
.route__pin--a { left: 5%; bottom: 7%; }
.route__pin--b { right: 5%; top: 6%; }
.route__pin--b .i { animation-delay: 1s; }
.route__card { position: absolute; left: 7%; top: 33%; max-width: 50%; padding: 14px 16px; border-radius: 20px; background: rgba(255, 255, 255, .9); box-shadow: var(--shadow); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.route__card b { display: block; color: var(--navy); font-size: .95rem; }
.route__card span { display: block; margin-top: 4px; color: var(--muted); font-size: .78rem; line-height: 1.45; }

.cities { width: 104%; margin: clamp(48px, 7vw, 80px) 0 0 -2%; padding: 16px 0; background: var(--navy); rotate: -1.5deg; }
.cities .marquee { -webkit-mask-image: none; mask-image: none; }
.city { display: inline-flex; align-items: center; gap: 22px; padding-right: 22px; color: #fff; font-size: clamp(1.1rem, 2.2vw, 1.55rem); font-weight: 800; letter-spacing: -.01em; white-space: nowrap; }
.city::after { content: '✦'; color: var(--col-yellow); font-size: .75em; }
.city:nth-child(3n + 2)::after { color: #7f9dff; }
.city:nth-child(3n)::after { color: #ff7a93; }

@media (max-width: 860px) {
  .colombia__grid { grid-template-columns: 1fr; gap: 32px; }
  .route { max-width: 380px; }
  .route__card { max-width: 58%; }
}

/* ───────────── Marcas ───────────── */
.brands__title { margin-bottom: 18px; color: var(--muted); font-weight: 700; text-align: center; }
.brand-chip { display: inline-flex; align-items: baseline; gap: 6px; padding: 4px 10px; color: var(--muted); font-size: clamp(1.5rem, 3.2vw, 2.4rem); font-weight: 800; letter-spacing: -.02em; text-decoration: none; white-space: nowrap; transition: color .3s, transform .4s var(--spring); }
.brand-chip small { color: var(--faint); font-size: .8rem; font-weight: 700; }
.brand-chip:hover { color: var(--blue); transform: translateY(-3px); }
.brand-sep { padding: 0 16px; color: var(--col-yellow); font-size: 1.1rem; }

/* ───────────── Preguntas frecuentes ───────────── */
.faq { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); align-items: start; gap: 48px; }
.faq__intro { position: sticky; top: calc(var(--header-h) + 24px); }
.faq__intro .btn { margin-top: 24px; }
.faq__list { display: grid; gap: 12px; }
.faq__item { border: 1px solid transparent; border-radius: 22px; background: var(--bg); transition: background-color .3s, border-color .3s, box-shadow .3s; }
.faq__item.is-open { border-color: var(--line); background: #fff; box-shadow: var(--shadow); }
.faq__item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px 18px 22px; color: var(--navy); font-size: 1.02rem; font-weight: 700; list-style: none; cursor: pointer; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--blue); }
.faq__icon { position: relative; flex: none; width: 32px; height: 32px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); transition: transform .5s var(--spring), background-color .3s; }
.faq__icon::before, .faq__icon::after { content: ''; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; margin: -1px 0 0 -6px; border-radius: 2px; background: var(--navy); transition: transform .35s var(--ease), background-color .3s; }
.faq__icon::after { transform: rotate(90deg); }
.faq__item.is-open .faq__icon { background: var(--blue); transform: rotate(180deg); }
.faq__item.is-open .faq__icon::before, .faq__item.is-open .faq__icon::after { background: #fff; }
.faq__item.is-open .faq__icon::after { transform: rotate(0deg); }
.faq__body { overflow: hidden; }
.faq__body p { padding: 0 22px 20px; color: var(--muted); }
@media (max-width: 860px) {
  .faq { grid-template-columns: 1fr; gap: 24px; }
  .faq__intro { position: static; }
}

/* ───────────── Llamado final ───────────── */
.cta-band {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(44px, 7vw, 92px) clamp(22px, 5vw, 64px); border-radius: 40px; text-align: center;
  background:
    radial-gradient(700px 360px at 50% 115%, rgba(252, 209, 22, .38), transparent 60%),
    linear-gradient(135deg, var(--lav), var(--sky) 50%, var(--mint));
}
.cta-band__copy { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; max-width: 680px; margin: 0 auto; }
.cta-band .lead { margin-inline: auto; }
.cta-band .slide__cta { justify-content: center; }
.cta-float { position: absolute; z-index: 1; width: clamp(76px, 10vw, 132px); aspect-ratio: 1; padding: 10px; border-radius: 26px; background: #fff; box-shadow: var(--shadow); animation: float 6s ease-in-out infinite; }
.cta-float img { width: 100%; height: 100%; object-fit: contain; }
.cta-float:nth-child(1) { left: 3%; top: 12%; rotate: -10deg; animation-delay: -1s; }
.cta-float:nth-child(2) { left: 9%; bottom: 10%; rotate: 8deg; animation-delay: -3s; }
.cta-float:nth-child(3) { right: 4%; top: 13%; rotate: 9deg; animation-delay: -2s; }
.cta-float:nth-child(4) { right: 10%; bottom: 9%; rotate: -7deg; animation-delay: -4s; }
@media (max-width: 1000px) { .cta-float { display: none; } }

@keyframes drift { from { transform: translate(0, 0) scale(1); } to { transform: translate(6%, 8%) scale(1.15); } }
@keyframes float-rev { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(10px) rotate(-3deg); } }
@keyframes dot-fill { to { transform: scaleX(1); } }
@keyframes march { to { stroke-dashoffset: -20; } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 40% { transform: translateY(-4px); } }
