/* ============================================================
   home-v2.css — CloudJersey Home v2
   Mobile-first. No external libraries.
   ============================================================ */


#content > .ast-container{
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}
/* ============================================================
   home-v2.css — CloudJersey Home v2
   Mobile-first. No external libraries.
   ============================================================ */

/* === VARIABLES === */
:root {
  --cjv2-accent:       #002041;
  --cjv2-accent-light: #0a3a6b;
  --cjv2-green:        #16a34a;
  --cjv2-bg-alt:       #f8f9fa;
  --cjv2-text:         #1a1a1a;
  --cjv2-text-muted:   #6b7280;
  --cjv2-border:       #e5e7eb;
  --cjv2-radius:       12px;
  --cjv2-shadow:       0 2px 12px rgba(0, 0, 0, 0.08);
  --cjv2-max-w:        1200px;
  --cjv2-gap:          16px;
}

/* === GLOBAL HOME v2 === */
.cj-home-v2 {
  overflow-x: hidden;
}

.cj-home-v2 section {
  padding: 30px 15px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
  box-sizing: border-box;
}

#content > div > main > section.cjm-hero{
    padding-top: 30px;
    padding-bottom: 30px;
}

.cjv2-section-inner {
  max-width: var(--cjv2-max-w);
  margin: 0 auto;
}

.cjv2-section-inner--narrow {
  max-width: 760px;
}

.cjv2-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.cjv2-section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cjv2-section-head--light .cjv2-section-title,
.cjv2-section-head--light .cjv2-section-subtitle {
  color: #fff;
}

.cjv2-section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #0d1b3e;
    margin: 0;
    margin-bottom: 5px !important;
    line-height: .8;
}

.cjv2-section-title--light {
  color: #fff;
}

.cjv2-section-subtitle {
  font-size: 1rem;
  color: var(--cjv2-text-muted);
  margin: 0px 0 0;
}

.cjv2-section-sub{
    margin-bottom: 0 !important;
}

.cjv2-section-subtitle--light {
  color: #94a3b8;
}


.cjv2-section-link:hover {
  border-bottom-color: var(--cjv2-accent);
}


/* === OFFER BAR v2 === */
/* FIX: eliminado position:sticky/top/z-index — el offerbar vive dentro del #cjv2-header */
.cjv2-offerbar {
  color: #fff;
  font-size: 0.82rem;
  line-height: 1.4;
}

.cjv2-offerbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  max-width: var(--cjv2-max-w);
  margin: 0 auto;
  padding: 10px 5px;
  position: relative;
}

.cjv2-offerbar-fire {
  display: none;
}

.cjv2-offerbar-msg {
  margin: 0;
  font-weight: 500;
  text-align: center;
}

.cjv2-offerbar-countdown {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: monospace;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fbbf24;
}

.cjv2-cd-unit {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 2px 5px;
}

.cjv2-cd-sep {
  color: #9ca3af;
  font-size: 0.7rem;
  margin: 0 2px;
}

.cjv2-offerbar-badge {
  background: #ef4444;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

.cjv2-offerbar-close {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  transition: color 0.15s;
  flex-shrink: 0;
}

.cjv2-offerbar-close:hover {
  color: #fff;
}


/* === HERO v2 === (non-critical: form focus extras) */
.cjv2-hero-search button:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: 2px;
}

.cjv2-hero-search input:focus-visible {
  outline: 2px solid var(--cjv2-accent);
  outline-offset: -2px;
}


/* === PRODUCT CARDS (shared) === */
.cjv2-product-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--cjv2-gap);
}

.cjv2-product-card {
  border-radius: var(--cjv2-radius);
  overflow: hidden;
  background: #151c2c;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.cjv2-product-card:hover {
  transform: translateY(-2px);
}

.cjv2-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.cjv2-card-img-wrap {
  position: relative;
  overflow: hidden;
  background: #1e2742;
  padding: 12px;
  box-sizing: border-box;
}

.cjv2-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: #dc2626;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  line-height: 1.4;
  display: none;
}

.cjv2-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 10px #e0e0e0);
}

.cjv2-product-card:hover .cjv2-card-img {
  transform: scale(1.02);
}

.cjv2-card-body {
  padding: 12px 14px 16px;
}

.cjv2-card-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}

/* Rating */
.cjv2-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: -6px;
    font-size: 13px;
    justify-content: center;
}

.cjv2-card-stars {
  display: flex;
  gap: 1px;
}

.cjv2-star {
  font-size: 0.8rem;
  line-height: 1;
}

.cjv2-star--filled {
  color: #f59e0b;
}

.cjv2-star--half {
  color: #f59e0b;
  opacity: 0.6;
}

.cjv2-star--empty {
  color: #d1d5db;
}

.cjv2-card-rating-count {
  font-size: 0.75rem;
  color: #94a3b8;
}

/* Precio */
.cjv2-card-price {
    font-size: 1.1rem;
    font-weight: 400;
    color: #fff;
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: nowrap;
    justify-content: center;
}

.cjv2-card-price del {
  color: #6b7280;
  font-weight: 400;
  font-size: 1.2rem;
  text-decoration: line-through;
}

.cjv2-card-price ins {
  text-decoration: none;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
}


/* === NOVEDADES v2 === */
.cjv2-novedades {
  background: #fff;
}

/* --- Cards rediseñadas (solo novedades) --- */
.cjv2-novedades .cjv2-product-card {
  background: #f5f5f5;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}


.cjv2-novedades .cjv2-card-img-wrap {
  background: #f5f5f5;
  padding: 16px;
}

.cjv2-novedades .cjv2-card-body {
  padding: 12px 16px 16px;
  background: #f8f9fa;
}

.cjv2-novedades .cjv2-card-name {
    font-size: 14px;
    font-weight: 500;
    color: #111;
    text-align: center;
}

.cjv2-novedades .cjv2-star {
  font-size: 12px;
}

.cjv2-novedades .cjv2-card-rating{
    display: flex;
    align-items: baseline;
    gap: 4px;
    justify-content: center;
}

.cjv2-novedades .cjv2-star--filled,
.cjv2-novedades .cjv2-star--half {
  color: #f5a623;
}

.cjv2-novedades .cjv2-card-rating-avg {
  font-size: 12px;
  font-weight: 600;
  color: #444;
}

.cjv2-novedades .cjv2-card-rating-count {
  font-size: 11px;
  color: #888;
}

.cjv2-novedades .cjv2-card-price {
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: nowrap;
}

.cjv2-novedades .cjv2-card-price del {
    font-size: 17px;
    color: #9ca3af;
    font-weight: 400;
}

.cjv2-novedades .cjv2-card-price ins {
    font-size: 18px;
    color: #002040;
    font-weight: 700;
    text-decoration: none;
}



/* === JUGADORES v2 === */
.cjv2-jugadores {
  background: #fff;
}

.cjv2-jugadores-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}


.cjv2-jugador-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.cjv2-jugador-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cjv2-bg-alt);
  border: 2px solid var(--cjv2-border);
  flex-shrink: 0;
  transition: border-color 0.2s, transform 0.2s;
  justify-content: center;
    align-items: center;
    display: flex;
}

.cjv2-jugador-link:hover .cjv2-jugador-avatar {
  transform: translateY(-2px);
}

.cjv2-jugador-img {
     object-fit: cover;
    display: block;
    padding: 12px;
}

.cjv2-jugador-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.cjv2-jugador-nombre {
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
  color: var(--cjv2-text);
  line-height: 1.3;
  word-break: break-word;
  hyphens: auto;
}


/* === RESEÑAS v2 — SLIDER === */
.cjv2-resenas {
    background: var(--cjv2-bg-alt);
    padding: 65px 25px !important;
}

/* Rating agregado en el encabezado */
.cjv2-agg-stars {
  color: #f59e0b;
  letter-spacing: 0.05em;
}

/* Slider container */
.cjv2-slider {
  position: relative;
  padding-bottom: 48px; /* espacio para dots */
}

.cjv2-slider-track-wrap {
  overflow: hidden;
}

.cjv2-slider-track {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  will-change: transform;
}

/* Cada slide */
.cjv2-slide {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

/* Card reseña */
.cjv2-slide-review {
  background: #fff;
  border-radius: var(--cjv2-radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.cjv2-slide-stars {
  display: flex;
  gap: 2px;
}

.cjv2-slide-text {
  margin: 0;
  font-style: italic;
  color: var(--cjv2-text);
  line-height: 1.65;
  font-size: 0.92rem;
  flex: 1;
}

.cjv2-slide-text p {
  margin: 0;
}

.cjv2-slide-author {
  font-style: normal;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--cjv2-text-muted);
}

/* Caja producto */
.cjv2-slide-product {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: var(--cjv2-radius);
  padding: 12px 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.cjv2-slide-product:hover {
  box-shadow: 0 2px 8px rgba(0, 32, 65, 0.08);
}

.cjv2-slide-prod-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--cjv2-bg-alt);
  flex-shrink: 0;
  padding: 4px;
  box-sizing: border-box;
}

.cjv2-slide-prod-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cjv2-slide-prod-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--cjv2-text-muted);
}

.cjv2-slide-prod-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cjv2-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cjv2-slide-prod-arrow {
  flex-shrink: 0;
  color: var(--cjv2-text-muted);
}



/* Dots */
.cjv2-slider-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  align-items: center;
}

.cjv2-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cjv2-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.cjv2-slider-dot.is-active {
  background: var(--cjv2-accent);
  transform: scale(1.3);
}


/* === COMPARATIVA v2 === */
.cjv2-comparativa {
  background: #fff;
}

.cjv2-comp-wrap {
  border: 1px solid var(--cjv2-border);
  border-radius: var(--cjv2-radius);
  overflow: hidden;
  margin-top: 32px;
}

.cjv2-comp-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
}

.cjv2-comp-header {
  background: var(--cjv2-accent);
}

.cjv2-comp-row--alt {
  background: var(--cjv2-bg-alt);
}

.cjv2-comp-cell {
  padding: 14px 18px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--cjv2-border);
}

.cjv2-comp-row:last-child .cjv2-comp-cell {
  border-bottom: none;
}

.cjv2-comp-cell--feature {
  font-weight: 600;
  color: var(--cjv2-text);
}

.cjv2-comp-header .cjv2-comp-cell {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: none;
  color: rgba(255, 255, 255, 0.7);
}

.cjv2-comp-cell--cj {
  font-weight: 800;
  color: #fff;
  background: var(--cjv2-accent-light);
  font-size: 0.95rem;
}

.cjv2-comp-cell--oficial {
  color: rgba(255, 255, 255, 0.7);
}

.cjv2-comp-cell--oficial-val {
  color: var(--cjv2-text-muted);
}

.cjv2-comp-cell--cj-val {
  font-weight: 600;
  color: var(--cjv2-accent);
}

.cjv2-comp-cell--win {
  background: #f0fdf4;
  color: #15803d;
}

.cjv2-comp-cta {
  text-align: center;
  margin-top: 32px;
}

.cjv2-comp-btn {
  display: inline-block;
  background: var(--cjv2-accent) !important;
  color: #fff !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s;
}

.cjv2-comp-btn:hover {
  background: var(--cjv2-accent-light);
}


/* === FAQS v2 === */
.cjv2-faqs {
  background: var(--cjv2-bg-alt);
}

.cjv2-faqs-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--cjv2-border);
  border-radius: var(--cjv2-radius);
  overflow: hidden;
  background: #fff;
}

.cjv2-faq-item {
  border-bottom: 1px solid var(--cjv2-border);
}

.cjv2-faq-item:last-child {
  border-bottom: none;
}

.cjv2-faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    background: #ffffff !important;
    transition: background 0.15s;
}

.cjv2-faq-trigger:hover {
  background: var(--cjv2-bg-alt) !important;
}

.cjv2-faq-trigger--open {
  background: var(--cjv2-bg-alt);
}

.cjv2-faq-q {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cjv2-text);
  line-height: 1.4;
}

.cjv2-faq-icon {
  flex-shrink: 0;
  color: var(--cjv2-accent);
  transition: transform 0.25s;
}

.cjv2-faq-trigger--open .cjv2-faq-icon {
  transform: rotate(180deg);
}

.cjv2-faq-icon-v {
  transition: opacity 0.2s;
}

.cjv2-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.cjv2-faq-panel[hidden] {
  display: block;
  visibility: visible;
}

.cjv2-faq-a {
    padding: 13px 20px;
}

.cjv2-faq-a p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--cjv2-text-muted);
  line-height: 1.65;
}


/* === CONTACTO v2 === */
.cjv2-contacto {
  background: #0f172a;
}

.cjv2-contacto-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.cjv2-contacto-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--cjv2-radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: background 0.2s;
}

.cjv2-contacto-icon {
  display: flex;
}

.cjv2-contacto-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.cjv2-contacto-info {
  font-size: 0.95rem;
  color: #94a3b8;
  margin: 0;
}

.cjv2-contacto-btn {
    display: inline-block;
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 11px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.cjv2-contacto-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.cjv2-contacto-btn--wa {
    background: rgba(22, 163, 74, 0.25);
    color: #4ade80 !important;
}

.cjv2-contacto-btn--wa:hover {
  background: rgba(22, 163, 74, 0.4);
}


/* === RESPONSIVE === */
@media (min-width: 768px) {
  .cj-home-v2 section {
    padding: 80px 32px;
  }

  .cjv2-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cjv2-contacto-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Jugadores: 6 cols a partir de 768px */
  .cjv2-jugadores-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
  }

  .cjv2-jugador-avatar {
    width: 100px;
    height: 100px;
  }

  .cjv2-jugador-nombre {
    font-size: 0.8rem;
  }
}

@media (min-width: 1024px) {
  .cjv2-product-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .cjv2-offerbar-inner {
    flex-wrap: nowrap;
  }

  .cjv2-comp-row {
    grid-template-columns: 2fr 1.5fr 1.5fr;
  }
}


/* === SEGUIMIENTO v2 === */
.cjv2-seguimiento {
  background: #fff;
}

.cjv2-seg-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #002040;
    margin: 0 0 12px;
    text-align: center;
    margin-bottom: 10px !important;
}

.cjv2-seg-sub {
  font-size: 1rem;
  color: var(--cjv2-text-muted);
  text-align: center;
  margin: 0;
  max-width: 520px;
}

/* 4 pasos en fila con flecha entre ellos */
.cjv2-seg-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.cjv2-seg-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 28px 20px 24px;
  background: var(--cjv2-bg-alt);
  border-radius: var(--cjv2-radius);
  border: 1px solid var(--cjv2-border);
}

.cjv2-seg-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.cjv2-seg-icon svg {
  width: 56px;
  height: 56px;
}

.cjv2-seg-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cjv2-text-muted);
}

.cjv2-seg-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cjv2-text);
  margin: 0;
  line-height: 1.3;
}

.cjv2-seg-card-desc {
  font-size: 0.875rem;
  color: var(--cjv2-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* CTA Banner */
.cjv2-seg-cta-banner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  background: linear-gradient(135deg, var(--cjv2-accent) 0%, var(--cjv2-accent-light) 100%);
  border-radius: 16px;
  padding: 32px 28px;
}

.cjv2-seg-cta-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #93c5fd;
  margin: 0 0 6px;
}

.cjv2-seg-cta-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}

.cjv2-seg-cta-btn {
  display: inline-block;
  background: #fff;
  color: var(--cjv2-accent);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}

.cjv2-seg-cta-btn:hover {
  background: #e8f0fe;
  transform: translateY(-1px);
}

/* Responsive: pasos en 2 cols tablet, 4 cols desktop */
@media (min-width: 640px) {
  .cjv2-seg-steps {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .cjv2-seg-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (min-width: 1024px) {
  .cjv2-seg-steps {
    flex-wrap: nowrap;
    align-items: stretch;
    position: relative; /* ancla el ::before */
  }

  /*
   * Línea conectora: un único trazo horizontal continuo que corre detrás
   * de todas las cards. Las cards la tapan con su fondo (z-index: 1),
   * dejando visible solo el segmento en los gaps entre cards.
   *
   * top = border-top(1px) + padding-top(28px) + mitad-ícono(28px) - 1px(mitad línea)
   *     = 56px desde el tope del contenedor.
   */
  .cjv2-seg-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #d1d5db;
    z-index: 0;
    pointer-events: none;
  }

  .cjv2-seg-card {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1; /* cubre la línea detrás de la card */
  }

  .cjv2-seg-cta-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cjv2-seg-cta-copy {
    flex: 1;
  }
}


/* ============================================================
   MOBILE — ajustes específicos
   ============================================================ */
@media (max-width: 767px) {
  /* Hero pills: solo 3 visibles, sin wrap, scroll horizontal */
  .cjv2-hero-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .cjv2-hero-pills::-webkit-scrollbar {
    display: none;
  }
  .cjv2-hero-pills li:nth-child(n+4) {
    display: none;
  }

  /* Novedades: grid más compacto, sin bordes en las cards */
  .cjv2-novedades .cjv2-product-grid {
    gap: 8px;
  }
  .cjv2-novedades .cjv2-product-card {
    border-radius: 8px;
  }
  .cjv2-novedades .cjv2-card-img-wrap {
    padding: 10px;
  }
  .cjv2-novedades .cjv2-card-body {
    padding: 8px 10px 12px;
  }

  /* Jugadores: slider horizontal en mobile */
  .cjv2-jugadores-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .cjv2-jugadores-grid::-webkit-scrollbar {
    display: none;
  }
  .cjv2-jugadores-grid > li {
    flex: 0 0 22%;
    scroll-snap-align: start;
  }
}

@media (max-width: 479px) {
  .cjv2-offerbar-countdown {
    display: none;
  }

  .cjv2-comp-row {
    grid-template-columns: 1fr 1fr;
  }

  .cjv2-comp-cell--feature {
    grid-column: 1 / -1;
    background: var(--cjv2-bg-alt);
    font-weight: 700;
    font-size: 0.82rem;
    padding-bottom: 4px;
  }

  .cjv2-comp-header .cjv2-comp-cell--feature {
    display: none;
  }
}

/* ============================================================
   HERO 3 COLUMNAS — compartido con la landing del mundial
   Variables locales del hero
   ============================================================ */
:root {
  --cjm-red:  #c60b1e;
  --cjm-dark: #a00818;
  --cjm-gold: #ffd700;
  --cjm-text: #ffffff;
  --cjm-navy: #0d1b3e;
}

.cjm-hero {
  background: #fff;
  width: 100%;
  margin: 0;
}

/* === Hero: carrusel de 2 posiciones (auto-avance vía home-v2.js) === */
.cjv2-hero {
  overflow: hidden;
  position: relative;
}

.cjv2-hero.cjhero2-wrap{
    padding: 0 !important;
}

.cjv2-hero-slider-track {
  display: flex;
}

.cjv2-hero-slide {
  flex: 0 0 100%;
  min-width: 0;
}

/* ============================================================
   Hero "Modernist" (cjhero2-*) — rediseño con tokens propios,
   escopeados a .cjhero2-wrap para no afectar el resto del sitio.
   ============================================================ */
.cjhero2-wrap {
  --color-text: #201e1d;
  --color-bg: #f3f2f2;
  --color-accent: #ec3013;
  --color-accent-600: #dd2b0f;
  --color-accent-700: #ae1800;
  --color-accent-100: #fff2ef;
  --color-accent-800: #7c1405;
  --color-neutral-100: #f8f4f4;
  --color-neutral-300: #d7d3d3;
  --color-neutral-500: #9b9797;
  --color-neutral-600: #7d7979;
  --color-neutral-700: #605d5d;
  --color-divider: color-mix(in srgb, #201e1d 40%, transparent);
  --shadow-sm: 0 1px 2px color-mix(in srgb, #2d2b2b 14%, transparent);
  --shadow-lg: 0 12px 32px color-mix(in srgb, #2d2b2b 22%, transparent);

  background: var(--color-bg);
  width: 100%;
  padding: 40px 24px;
  display: flex;
  justify-content: center;
  font-family: "Archivo", system-ui, sans-serif;
  color: var(--color-text);
}

.cjhero2-card {
  width: 100%;
  background: #ffffff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cjhero2-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) 40px minmax(0, 0.95fr);
  align-items: stretch;
  min-height: 560px;
}

/* ── Columna de texto ── */
.cjhero2-col-text {
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.cjhero2-h1 {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-neutral-600);
  font-family: inherit;
}
.cjhero2-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: 11px;
  padding: 3px 10px;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}
.cjhero2-title {
  line-height: 0.98;
}
.cjhero2-title-sm {
  display: block;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.cjhero2-title-md {
  display: block;
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.cjhero2-title-lg {
  display: block;
  font-size: clamp(54px, 6.5vw, 88px);
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.03em;
  margin: 4px 0;
  text-transform: uppercase;
}
.cjhero2-desc {
  margin: 0;
  max-width: 38ch;
  font-size: 16px;
  color: var(--color-neutral-700);
}
.cjhero2-desc--mobile {
  display: none;
}

/* ── Columna de imagen ── */
.cjhero2-col-img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    perspective: 1200px;
}
.cjhero2-img-card {
  --cjhero2-tilt: -6deg;
  width: 40%;
  aspect-ratio: 3 / 4;
  transform: rotate(var(--cjhero2-tilt));
  transition: transform 0.5s ease-in-out;
  transform-style: preserve-3d;
  box-shadow: var(--shadow-md);
  border-radius: 16px;
  overflow: hidden;
}
.cjhero2-img-card.cjhero2-flipping {
  transform: rotateY(90deg);
}
.cjhero2-img-card.cjhero2-flipped {
  transform: rotateY(0deg) rotate(var(--cjhero2-tilt));
}
.cjhero2-img-card .cjhero2-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cjhero2-col-img--plain .cjhero2-img {
    width: 70%;
    height: auto;
    filter: drop-shadow(0 20px 24px color-mix(in srgb, var(--color-text) 30%, transparent));
}

/* ── Separador (columna 3) ── */
.cjhero2-sep {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cjhero2-sep-line {
    display: none;
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 50%;
  width: 2px;
  background: var(--color-divider);
  transform: translateX(-50%);
}
.cjhero2-sep-plus {display: none;
  position: relative;
  background: #ffffff;
  padding: 6px;
  font-weight: 800;
  font-size: 22px;
  color: var(--color-neutral-500);
}

/* ── Columna de venta ── */
.cjhero2-col-sell {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
  border-left: 2px solid var(--color-divider);
}
.cjhero2-col-sell--accent {
  background: var(--color-accent);
  color: #ffffff;
  border-left: none;
}
.cjhero2-wordmark {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-neutral-600);
}
.cjhero2-wordmark--light {
  color: #ffffff;
  opacity: 0.85;
}
.cjhero2-stars {
  display: flex;
  gap: 6px;
  align-items: center;
  color: var(--color-accent);
}
.cjhero2-h2 {
  margin: 0 !important;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.05;
  text-transform: uppercase;
}
.cjhero2-h2--light {
  color: #ffffff;
}
.cjhero2-h2-break {
  display: block;
}
.cjhero2-sell-desc {
  margin: 0;
  font-size: 14px;
  color: var(--color-neutral-700);
}
.cjhero2-sell-desc--light {
  color: #ffffff;
  opacity: 0.9;
}
.cjhero2-cta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  width: 100%;
  margin-top: 8px;
  padding: 10px 14px;
  background: var(--color-accent);
  color: var(--color-bg);
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.15s;
}
.cjhero2-cta:hover {
  background: var(--color-accent-600);
}
.cjhero2-cta:active {
  background: var(--color-accent-700);
}

/* ── Cromos disponibles (posición 1) ── */
.cjhero2-cromos-label {
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 5px;
    margin-top: 10px;
}
.cjhero2-cromos-row {
    display: flex;
    gap: 8px;
    min-width: 0;
    margin-top: 10px;
}
.cjhero2-cromo-thumb {
  width: 50px;
  flex: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.cjhero2-cromo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Dots del carrusel ── */
.cjhero2-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.cjhero2-wrap .cjv2-hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--color-neutral-300);
  cursor: pointer;
  transition: background 0.2s;
}
.cjhero2-wrap .cjv2-hero-dot.cjv2-slide-active {
  background: var(--color-accent);
}

@media (max-width: 980px) {
  .cjhero2-wrap {
    padding: 16px 0;
  }
  .cjhero2-grid {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .cjhero2-sep { display: none; }

  /* ── Texto: h1/tag + título grande (sin el párrafo, que se muestra después de la imagen) ── */
  .cjhero2-col-text {
    padding: 28px 20px 8px;
    gap: 14px;
    text-align: center;
  }
  .cjhero2-h1 { font-size: 11px !important; letter-spacing: 0.06em; }
  .cjhero2-tag { font-size: 11px; letter-spacing: 0.06em; margin: auto;}
  .cjhero2-title-sm { font-size: 19px; letter-spacing: -0.01em; }
  .cjhero2-title-lg { font-size: 52px; letter-spacing: -0.02em; margin: 2px 0; }
  .cjhero2-title-md { font-size: 27px; letter-spacing: -0.01em; }

  /* ── Imagen ── */
  .cjhero2-col-img {
        padding: 16px 20px;
        justify-content: center;
    }
  .cjhero2-img-card {
    width: 40%;
    --cjhero2-tilt: -4deg;
    box-shadow: var(--shadow-md);
    border-radius: 14px;
  }
  .cjhero2-col-img--plain .cjhero2-img {
    width: 58%;
    filter: drop-shadow(0 14px 18px color-mix(in srgb, var(--color-text) 30%, transparent));
  }

  /* ── Párrafo: pasa a mostrarse después de la imagen, a ancho completo ── */
  .cjhero2-desc--desktop { display: none; }
  .cjhero2-desc--mobile {
        display: block;
        padding: 0 20px 24px;
        font-size: 15px;
        max-width: none;
        margin: 0;
        margin-top: 20px;
        text-align: center;
    }

  /* ── Bloque de venta: ancho completo debajo de todo ── */
  .cjhero2-col-sell {
        padding: 24px 20px 44px;
        border-left: none;
        border-top: 2px solid var(--color-divider);
        gap: 8px;
        text-align: center;
    }
  .cjhero2-col-sell--accent {
        padding: 28px 20px 44px;
        border-top: none;
        gap: 2px;
    }
  .cjhero2-col-sell--accent .cjhero2-h2.cjhero2-h2--light{
    margin: 0;
}
  .cjhero2-wordmark { font-size: 12px; }
  .cjhero2-stars{
    margin: auto;
}
  .cjhero2-col-sell .cjhero2-h2{
    margin-bottom: 0 !important;
    text-transform: uppercase;
}
.cjhero2-col-sell .cjhero2-cta{
    width: auto;
    text-align: center;
    justify-content: center;
    border-radius: 10px;
}
  .cjhero2-stars svg { width: 22px; height: 22px; }
  .cjhero2-cromos-label { font-size: 11px; margin-top: 10px;
  }
  .cjhero2-cromos-row{
    justify-content: center;
}
  .cjhero2-cromo-thumb { width: 56px; height: 56px; }

  /* ── "Cromo gratis" vuelve a fluir en una sola línea ── */
  .cjhero2-h2-break { display: inline; }
}

.cjv2-mundial-hero {
  display: grid;
  grid-template-columns: 38fr 28fr auto 34fr;
  align-items: center;
  gap: 15px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 20px;
}

.cjv2-mundial-col-texto {
  display: flex;
  flex-direction: column;
}

.cjm-hero-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cjm-navy);
  margin: 0;
}

.cjm-hero-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--cjm-navy);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.cjv2-mundial-col-texto h1.cjm-hero-title { color: var(--cjm-navy) !important; }

.cjm-hero-desc {
  font-size: 14px;
  color: #888;
  line-height: 1.5;
  max-width: 320px;
  margin: 0;
}

.cjv2-mundial-col-cromo {
  display: flex;
  align-items: center;
  justify-content: end;
  position: relative;
}
.cjv2-mundial-col-cromo::before {
  content: '';
  width: 1px;
  height: 100px;
  background: #e7e7e7;
  position: absolute;
  left: 25%;
}

.cjv2-cromo-flipper-wrap {
  perspective: 800px;
  width: 130px;
  margin: 0;
}
.cjv2-cromo-flipper {
  width: 130px;
  transform-style: preserve-3d;
  transition: transform 0.5s ease-in-out;
  transform: rotate(6deg);
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.18));
}
.cjv2-cromo-flipper.flipping {
  transform: rotateY(90deg);
}
.cjv2-cromo-flipper.flipped {
  transform: rotateY(0deg) rotate(6deg);
}
.cjv2-cromo-img {
  width: 130px;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 17px rgba(0,0,0,0.22);
}

.cjv2-mundial-plus {
  font-size: 48px;
  font-weight: 900;
  color: #0d1b3e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cjv2-mundial-col-promo {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.cjv2-mundial-logo {
  height: auto;
  width: 45px;
  display: block;
}

.cjv2-mundial-promo-titulo {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  color: var(--cjm-navy);
  letter-spacing: -1px;
  margin: 0 !important;
  line-height: 1.1;
}

.cjv2-mundial-promo-sub {
  font-size: 14px;
  color: #888;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .cjm-hero { min-height: 400px; }
}

@media (max-width: 768px) {
  .cjv2-mundial-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 32px 20px;
  }
  .cjv2-mundial-col-texto {
    order: 1;
    text-align: center;
    padding-bottom: 24px;
    width: 100%;
  }
  .cjv2-mundial-col-texto::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #eee;
    margin-top: 24px;
  }
  .cjm-hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
}
  .cjm-hero-title { font-size: clamp(28px, 8vw, 38px); }
  .cjm-hero-desc  { max-width: none; font-size: 13px; }
  .cjv2-mundial-col-promo {
    order: 2;
    text-align: center;
    padding: 20px 0 0 0;
    margin-left: 0;
  }
  .cjv2-mundial-promo-titulo { font-size: clamp(24px, 6vw, 32px); }
  .cjv2-mundial-logo { margin: 0 auto; }
  .cjv2-mundial-plus {
        order: 3;
        padding: 0 0 8px 0;
        font-size: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
  .cjv2-mundial-col-cromo {
    order: 4;
    display: flex;
    justify-content: center;
    padding-bottom: 16px;
    position: static;
  }
  .cjv2-mundial-col-cromo::before { display: none; }
  .cjv2-cromo-flipper-wrap { margin: 0 auto; }
}

/* ============================================================
   NOVEDADES — sección home
   ============================================================ */

/* Contenedor de sección */
.cjv2-home-novedades {
  background: #f8f9fa;
}

/* Overrides: cards light (fondo blanco, texto oscuro) */
.cjv2-home-novedades .cjv2-product-card {
  background: #f8f9fa;
  border: 1px solid #efefef;
  border-radius: 12px;
}
#content > div > main > section.cjv2-home-masvendidas.cjv2-home-novedades > div > div.cjv2-home-novedades-viewport > ul > li,
#content > div > main > section.cjv2-home-masvendidas.cjv2-home-novedades > div > div.cjv2-home-novedades-viewport > ul > li > a > div.cjv2-card-img-wrap{
    background: #ffffff;
}
.cjv2-home-novedades .cjv2-card-img-wrap {
  background: #f8f9fa;
  height: 300px;
}
.cjv2-home-novedades .cjv2-card-badge { display: inline-block; }
.cjv2-home-novedades .cjv2-card-name  { color: #111; }
.cjv2-home-novedades .cjv2-card-price { color: #111; }
.cjv2-home-novedades .cjv2-card-price ins { color: #0d1b3e; }
.cjv2-home-novedades .cjv2-card-price del { color: #9ca3af; }
.cjv2-home-novedades .cjv2-card-rating-count { color: #6b7280; }

/* Grid — desktop: 4 cols, tablet: 2 */
.cjv2-home-novedades-viewport {
  width: 100%;
}
.cjv2-home-novedades-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .cjv2-home-novedades-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Hint "Deslizá" — oculto en desktop */
.cjv2-home-novedades-hint {
  display: none;
}

/* Mobile: slider horizontal */
@media (max-width: 767px) {
  .cjv2-home-novedades-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .cjv2-home-novedades-viewport::-webkit-scrollbar { display: none; }

  .cjv2-home-novedades-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    width: max-content;
  }
  .cjv2-home-novedades-grid .cjv2-product-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
  }
  .cjv2-home-novedades .cjv2-card-img-wrap {
    height: 180px;
  }

  .cjv2-home-novedades-hint {
    display: block;
    text-align: center;
    font-size: 0.78rem;
    color: #9ca3af;
    margin: 10px 0 0;
  }
}

/* CTA button */
.cjv2-home-novedades-cta-wrap {
  text-align: center;
  margin-top: 32px;
}
.cjv2-home-novedades-cta {
  display: inline-block;
  padding: 13px 36px;
  background: #0d1b3e;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.18s, transform 0.15s;
}
.cjv2-home-novedades-cta:hover {
  background: #1a3060;
  transform: translateY(-1px);
}

/* ============================================================
   STRIP DE CONFIANZA — home
   ============================================================ */
.cjv2-home-trust {
  background: #0d1b3e;
  padding: 0 !important;
}

.cjv2-home-trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--cjv2-max-w);
  margin: 0 auto;
}

.cjv2-home-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.cjv2-home-trust-item:last-child {
  border-right: none;
}

.cjv2-home-trust-icon {
  color: #ffd700;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.cjv2-home-trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cjv2-home-trust-text strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.cjv2-home-trust-text span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .cjv2-home-trust-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .cjv2-home-trust-item {
    padding: 18px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .cjv2-home-trust-item:nth-child(2n) {
    border-right: none;
  }
  .cjv2-home-trust-item:nth-child(1),
  .cjv2-home-trust-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* ============================================================
   MÁS VENDIDAS — override de fondo (layout reutiliza clases de novedades)
   ============================================================ */
.cjv2-home-masvendidas {
  background: #fff;
}

/* ============================================================
   EQUIPOS POPULARES — sección home
   ============================================================ */
.cjv2-home-equipos {
  background: #fff;
}

.cjv2-home-equipos-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.cjv2-home-equipos-card {
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.cjv2-home-equipos-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 20px 12px;
  text-decoration: none;
  color: inherit;
  height: 100%;
  box-sizing: border-box;
}

.cjv2-home-equipos-logo-wrap {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cjv2-home-equipos-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}

.cjv2-home-equipos-initials {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f4ff;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0d1b3e;
}

.cjv2-home-equipos-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0d1b3e;
  line-height: 1.3;
}

.cjv2-home-equipos-count {
  font-size: 0.72rem;
  color: #9ca3af;
  line-height: 1;
}

@media (max-width: 1024px) {
  .cjv2-home-equipos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .cjv2-home-equipos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .cjv2-home-equipos-link {
    padding: 14px 8px;
  }
}

/* ============================================================
   ENVÍO / SEGUIMIENTO — compacto
   ============================================================ */
.cjv2-envio {
  background: #f8f9fa;
}

.cjv2-envio-grid {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cjv2-envio-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px 18px;
}

.cjv2-envio-icon {
  color: #0d1b3e;
  flex-shrink: 0;
  margin-top: 2px;
}

.cjv2-envio-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cjv2-envio-body strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0d1b3e;
  line-height: 1.2;
}

.cjv2-envio-body span {
  font-size: 0.78rem;
  color: #6b7280;
  line-height: 1.4;
}

.cjv2-envio-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cjv2-envio-cta-text {
  font-size: 0.95rem;
  color: #374151;
  font-weight: 500;
}

.cjv2-envio-cta-btn {
  display: inline-block;
  padding: 11px 28px;
  background: #0d1b3e;
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.18s, transform 0.15s;
}

.cjv2-envio-cta-btn:hover {
  background: #1a3060;
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .cjv2-envio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .cjv2-envio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cjv2-envio-item {
    padding: 14px 10px;
  }
}

/* ============================================================
   RESEÑAS — Grid masonry (idéntico a landing mundial)
   ============================================================ */
.cjv2-resenas {
  padding-top: 30px;
}
.cjv2-mundial-resenas-header {
  text-align: center;
  margin-bottom: 36px;
}
.cjv2-mundial-resenas-titulo {
  font-size: 32px;
  font-weight: 900;
  color: #0d1b3e;
  margin: 0 0 5px !important;
  line-height: 1.1;
}
.cjv2-mundial-resenas-sub {
  font-size: 14px;
  color: #888;
  margin: 0 0 16px;
}
.cjv2-mundial-resenas-global {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cjv2-mundial-resenas-avg {
  font-size: 40px;
  font-weight: 900;
  color: #0d1b3e;
  line-height: 1;
}
.cjv2-mundial-resenas-stars-global .cjv2-rstar--full  { color: #f5a623; font-size: 24px; }
.cjv2-mundial-resenas-stars-global .cjv2-rstar--empty { color: #ddd;    font-size: 24px; }
.cjv2-mundial-resenas-total {
  font-size: 13px;
  color: #888;
}
.cjv2-mundial-resenas-grid {
  columns: 3;
  column-gap: 16px;
}
.cjv2-mundial-resenas-card {
  break-inside: avoid;
  display: block;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}
.cjv2-mundial-resenas-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}
.cjv2-rstar--full  { color: #f5a623; font-size: 16px; }
.cjv2-rstar--empty { color: #ddd;    font-size: 16px; }
.cjv2-mundial-resenas-text {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin: 0 0 16px;
}
.cjv2-mundial-resenas-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cjv2-mundial-resenas-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.cjv2-mundial-resenas-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.cjv2-mundial-resenas-meta strong {
  font-size: 13px;
  font-weight: 700;
  color: #111;
}
.cjv2-mundial-resenas-meta span {
  font-size: 11px;
  color: #999;
}
.cjv2-mundial-resenas-product {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e8e8e8;
}
.cjv2-mundial-resenas-product img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.cjv2-mundial-resenas-product span {
  font-size: 12px;
  color: #666;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .cjv2-mundial-resenas-grid { columns: 2; }
}
@media (max-width: 540px) {
  .cjv2-mundial-resenas-titulo { font-size: 24px; }
  .cjv2-mundial-resenas-avg    { font-size: 32px; }
  .cjv2-mundial-resenas-grid   { columns: 2; }
  .cjv2-mundial-resenas-header { margin-bottom: 24px; }
  .cjv2-mundial-resenas-card   { padding: 14px; }
  .cjv2-mundial-resenas-text   { font-size: 13px; }
  .cjv2-mundial-resenas-footer { gap: 6px; }
  .cjv2-mundial-resenas-avatar { width: 26px; height: 26px; font-size: 10px; }
  .cjv2-mundial-resenas-meta strong { font-size: 11px; }
  .cjv2-mundial-resenas-meta span   { font-size: 10px; }
  .cjv2-mundial-resenas-product     { margin-top: 8px; padding-top: 8px; }
  .cjv2-mundial-resenas-product img { width: 24px; height: 24px; }
  .cjv2-mundial-resenas-product span{ font-size: 10px; }
}

/* ============================================================
   POR QUÉ CLOUDJERSEY — Bento grid (idéntico a landing mundial)
   ============================================================ */
.cjv2-mundial-ventajas {
  background: #fff;
  padding: 56px 0;
}
.cjv2-mundial-ventajas-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.cjv2-mundial-ventajas-header {
  text-align: center;
  margin-bottom: 40px;
}
.cjv2-mundial-ventajas-titulo {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 900;
  color: #0d1b3e;
  letter-spacing: -1px;
  margin: 0 0 8px !important;
  line-height: 1.1;
}
.cjv2-mundial-ventajas-sub {
  font-size: 14px;
  color: #888;
  margin: 0;
}
.cjv2-mundial-ventajas-card {
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.cjv2-mundial-ventajas-num {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  margin: 0 0 5px 0;
}
.cjv2-mundial-ventajas-card-title {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 6px;
}
.cjv2-mundial-ventajas-card-text {
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
}
.cjv2-mundial-ventajas-deco {
  position: absolute;
  right: -10px;
  bottom: -10px;
  font-size: 80px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.cjv2-mundial-ventajas-row1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.cjv2-mundial-ventajas-row2 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.cjv2-mundial-ventajas-garantia-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.cjv2-mundial-ventajas-garantia-num {
  font-size: 72px;
  font-weight: 900;
  color: #0d1b3e;
  letter-spacing: -3px;
  line-height: 1;
  flex-shrink: 0;
}
.cjv2-mundial-ventajas-garantia-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cjv2-mundial-ventajas-garantia-title {
  font-size: 16px;
  font-weight: 800;
  color: #0d1b3e;
  margin: 0;
}
.cjv2-mundial-ventajas-garantia-text {
  font-size: 13px;
  color: #888;
  margin: 0;
}
.cjv2-mundial-ventajas-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cjv2-mundial-ventajas-badge {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 11px;
  color: #555;
}
.cjv2-mundial-ventajas-cromo {
  background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.cjv2-mundial-ventajas-cromo-eyebrow {
  font-size: 11px;
  color: rgba(0,0,0,0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}
.cjv2-mundial-ventajas-cromo-titulo {
  font-size: 28px;
  font-weight: 900;
  color: #0d1b3e;
  margin: 0 0 4px;
  line-height: 1.1;
}
.cjv2-mundial-ventajas-cromo-sub {
  font-size: 13px;
  color: rgba(0,0,0,0.55);
  margin: 0;
}
.cjv2-mundial-ventajas-cromo-right {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}
.cjv2-mundial-ventajas-cromo-btn {
  background: #0d1b3e;
  color: #ffd700;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.cjv2-mundial-ventajas-cromo-btn:hover { background: #1a2d5a; color: #ffd700; }


@media (max-width: 900px) {
  .cjv2-mundial-ventajas-row1 { grid-template-columns: repeat(2, 1fr); }
  .cjv2-mundial-ventajas-row2 { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .cjv2-mundial-ventajas-row1        { grid-template-columns: 1fr; }
  .cjv2-mundial-ventajas-num         { font-size: 44px; }
  .cjv2-mundial-ventajas-garantia-num{ font-size: 56px; }
  .cjv2-mundial-ventajas-cromo       { flex-direction: column; text-align: center; }
  .cjv2-mundial-ventajas-cromo-right { justify-content: center; }
}

