/* CCO homepage: hero + ticker */

.cco-hero-zone {
  position: relative;
  z-index: 1;
  margin-top: -78px;
}

/* ── Hero slider ── */
.cco-hero {
  position: relative;
  min-height: 66vh;
  overflow: hidden;
  background: var(--cco-vino-xdk);
}

.cco-hero__track {
  position: relative;
  min-height: 66vh;
}

.cco-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.cco-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  pointer-events: auto;
}

.cco-hero__slide:not(.is-active) .cco-hero__content {
  visibility: hidden;
  pointer-events: none;
}

.cco-hero__slide.is-active .cco-hero__content {
  visibility: visible;
  pointer-events: auto;
}

.cco-hero__bg {
  position: absolute;
  inset: 0;
  background-image: var(--cco-hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: transform 8s ease, filter 0.8s ease;
}

.cco-hero__slide--mercurio .cco-hero__bg {
  background-color: var(--cco-vino-xdk);
  background-image:
    linear-gradient(
      100deg,
      var(--cco-vino-xdk) 0%,
      var(--cco-vino-dk) 30%,
      rgba(106, 15, 39, 0.92) 43%,
      rgba(78, 11, 29, 0.42) 62%,
      transparent 78%
    ),
    var(--cco-hero-image);
  background-repeat: no-repeat;
  background-position: center, right center;
  background-size: 100% 100%, 73% auto;
}

.cco-hero__slide.is-active .cco-hero__bg {
  transform: scale(1);
  filter: brightness(1.05) contrast(1.05) saturate(1.06);
}

/* Scrim limpio: lectura a la izquierda, imagen visible a la derecha */
.cco-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      102deg,
      rgba(10, 6, 8, 0.68) 0%,
      rgba(10, 6, 8, 0.32) 40%,
      rgba(10, 6, 8, 0.06) 62%,
      transparent 78%
    ),
    linear-gradient(0deg, rgba(8, 4, 6, 0.42) 0%, transparent 42%);
  pointer-events: none;
}

.cco-hero__slide.has-overlay .cco-hero__bg::after {
  background:
    linear-gradient(
      102deg,
      rgba(6, 4, 6, 0.76) 0%,
      rgba(6, 4, 6, 0.42) 42%,
      rgba(0, 0, 0, 0.12) 68%,
      transparent 85%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.48) 0%, transparent 48%);
}

.cco-hero__slide::before {
  display: none;
}

.cco-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 66vh;
  display: flex;
  align-items: center;
  padding: 120px 8% 72px;
  max-width: 1320px;
  margin: 0 auto;
}

.cco-hero__content {
  max-width: 720px;
}

/* Primer banner: área de lectura al 60% para liberar la fotografía. */
.cco-hero__slide:first-child .cco-hero__content {
  max-width: 432px;
}

.cco-hero__slide:not(.is-active) .cco-hero__title,
.cco-hero__slide:not(.is-active) .cco-hero__desc,
.cco-hero__slide:not(.is-active) .cco-hero__btn {
  opacity: 0;
  transform: translateX(28px);
  animation: none;
}

.cco-hero__slide.is-active .cco-hero__title {
  animation: cco-hero-fade-in 0.9s ease both;
}

.cco-hero__slide.is-active .cco-hero__desc {
  animation: cco-hero-fade-in 0.9s ease 0.12s both;
}

.cco-hero__slide.is-active .cco-hero__btn {
  animation: cco-hero-fade-in 0.9s ease 0.24s backwards;
}

@keyframes cco-hero-fade-in {
  from {
    opacity: 0;
    transform: translateX(28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cco-hero__title {
  margin: 0 0 14px;
  font-family: var(--cco-font-brand);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--cco-gold-lt);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.cco-hero__desc {
  margin: 0 0 24px;
  font-family: var(--cco-font-ui);
  font-size: clamp(0.9375rem, 1.8vw, 1.125rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.94);
  max-width: 560px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.cco-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: var(--cco-radius);
  background: var(--cco-gold-lt);
  border: 1px solid var(--cco-gold);
  color: var(--cco-btn-text) !important;
  font-family: var(--cco-font-ui);
  font-size: var(--cco-type-sm);
  font-weight: 800;
  letter-spacing: var(--cco-track-label);
  text-transform: uppercase;
  box-shadow: 0 4px 16px var(--cco-gold-glow);
  transition: background var(--cco-ease), color var(--cco-ease), transform var(--cco-ease), box-shadow var(--cco-ease);
}

.cco-hero__btn:hover {
  background: var(--cco-gold);
  border-color: var(--cco-gold-dk);
  color: var(--cco-vino-xdk) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px var(--cco-gold-glow);
}

.cco-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.cco-hero__slide:not(.is-active) .cco-hero__actions {
  opacity: 0;
  transform: translateX(28px);
  animation: none;
}

.cco-hero__slide.is-active .cco-hero__actions {
  animation: cco-hero-fade-in 0.9s ease 0.24s both;
}

.cco-hero__slide.is-active .cco-hero__btn {
  animation: none;
}

.cco-hero__btn--portal {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.cco-hero__btn--portal:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--cco-gold-lt);
  color: var(--cco-gold-lt) !important;
  box-shadow: none;
}

/* CTA Portal Lego (strip + inline) */
.cco-portal-cta {
  position: relative;
  z-index: 2;
}

.cco-portal-cta--strip {
  margin: -6px 0 0;
  padding: 1.15rem 0;
  background:
    linear-gradient(105deg, var(--cco-vino-xdk) 0%, #5a1430 48%, var(--cco-vino) 100%);
  border-top: 1px solid rgba(189, 176, 70, 0.28);
  border-bottom: 1px solid rgba(189, 176, 70, 0.18);
}

.cco-portal-cta__inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.cco-portal-cta__kicker {
  margin: 0 0 0.2rem;
  font-family: var(--cco-font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cco-gold-lt);
}

.cco-portal-cta__title {
  margin: 0 0 0.25rem;
  font-family: var(--cco-font-brand);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
}

.cco-portal-cta__lead {
  margin: 0;
  max-width: 36rem;
  font-family: var(--cco-font-content);
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

.cco-portal-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cco-portal-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.1rem;
  border-radius: var(--cco-radius, 8px);
  font-family: var(--cco-font-ui);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.cco-portal-cta__btn--primary {
  background: var(--cco-gold-lt);
  border: 1px solid var(--cco-gold);
  color: var(--cco-vino-xdk);
}

.cco-portal-cta__btn--primary:hover {
  background: var(--cco-gold);
  transform: translateY(-2px);
}

.cco-portal-cta__btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

.cco-portal-cta__btn--ghost:hover {
  border-color: var(--cco-gold-lt);
  color: var(--cco-gold-lt);
}

.cco-portal-cta--inline {
  margin-top: 1.35rem;
  padding: 1.15rem 1.2rem;
  border-radius: 12px;
  border: 1px solid rgba(189, 176, 70, 0.45);
  background: rgba(0, 0, 0, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.cco-portal-cta--inline .cco-portal-cta__inner {
  width: 100%;
  margin: 0;
}

.cco-portal-cta--inline .cco-portal-cta__kicker {
  color: var(--cco-gold-lt);
}

.cco-portal-cta--inline .cco-portal-cta__title {
  color: #fff;
  font-size: 1.1rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.cco-portal-cta--inline .cco-portal-cta__lead {
  color: rgba(255, 255, 255, 0.9);
}

.cco-portal-cta--inline .cco-portal-cta__btn--primary {
  box-shadow: 0 4px 14px rgba(189, 176, 70, 0.35);
}

.cco-affiliate-plan__btn {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cco-affiliate-plan:hover .cco-affiliate-plan__btn {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(78, 11, 29, 0.18);
}

.cco-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.cco-hero__dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: background var(--cco-ease), transform var(--cco-ease);
}

.cco-hero__dot.is-active {
  background: var(--cco-gold);
  transform: scale(1.15);
}

/* ── News ticker ── */
.cco-ticker {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  height: 40px;
  background: var(--cco-vino-xdk);
  font-family: var(--cco-font-ui);
  position: relative;
}

.cco-ticker::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 60px;
  background: linear-gradient(to left, var(--cco-vino-xdk), transparent);
  pointer-events: none;
  z-index: 2;
}

.cco-ticker__badge {
  background: var(--cco-gold);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px 0 15px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.cco-ticker__badge-text {
  color: var(--cco-vino-xdk);
  font-weight: 800;
  font-size: var(--cco-type-sm);
  letter-spacing: var(--cco-track-label);
  text-transform: uppercase;
  white-space: nowrap;
}

.cco-ticker__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cco-vino);
  flex-shrink: 0;
  position: relative;
}

.cco-ticker__pulse::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(78, 11, 29, 0.35);
  animation: cco-pulse 1.8s ease-out infinite;
}

@keyframes cco-pulse {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.cco-ticker__arrow {
  position: absolute;
  left: 100%;
  top: 0;
  width: 15px;
  height: 100%;
  margin-left: -1px;
  background: var(--cco-gold);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.cco-ticker__track {
  overflow: hidden;
  flex: 1;
  display: flex;
  align-items: center;
  padding-left: 22px;
}

.cco-ticker__move {
  display: inline-block;
  white-space: nowrap;
  font-size: var(--cco-type-base);
  font-weight: 500;
  letter-spacing: var(--cco-track-tight);
  color: rgba(255, 255, 255, 0.85);
  animation: cco-ticker-scroll 36s linear infinite;
}

.cco-ticker__move a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cco-ticker__move a:hover {
  color: var(--cco-gold-lt);
}

.cco-ticker__sep {
  color: var(--cco-gold);
  margin: 0 14px;
  font-size: 10px;
  opacity: 0.7;
}

@keyframes cco-ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── Stats band (tema claro crema/dorado) ── */
.cco-stats {
  position: relative;
  padding: clamp(1.35rem, 2.6vw, 1.85rem) 0;
  border-top: 1px solid rgba(189, 176, 70, 0.22);
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(189, 176, 70, 0.14), transparent 58%),
    linear-gradient(180deg, #f7f1e4 0%, #f0e8d6 48%, #ebe2cd 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.cco-stats::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(189, 176, 70, 0.2),
    var(--cco-gold),
    rgba(189, 176, 70, 0.2),
    transparent
  );
}

.cco-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.5vw, 16px);
}

.cco-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(136, 20, 51, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 4px 16px rgba(78, 11, 29, 0.06);
  opacity: 0;
  transform: translateY(12px);
  text-decoration: none;
  color: inherit;
  transition: background var(--cco-ease), border-color var(--cco-ease), transform var(--cco-ease), box-shadow var(--cco-ease);
}

a.cco-stat:hover .cco-stat__label,
a.cco-stat:hover .cco-stat__meta {
  color: var(--cco-vino);
}

.cco-stats.is-visible .cco-stat,
.cco-stats[data-cco-reveal="eager"] .cco-stat {
  animation: cco-stat-in 0.55s ease both;
  animation-delay: var(--cco-stat-delay, 0ms);
}

@keyframes cco-stat-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.cco-stat:hover {
  background: #fff;
  border-color: rgba(189, 176, 70, 0.55);
  box-shadow: 0 10px 24px rgba(78, 11, 29, 0.1);
  transform: translateY(-2px);
}

.cco-stat__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--cco-vino);
  background: rgba(189, 176, 70, 0.16);
  border: 1px solid rgba(189, 176, 70, 0.4);
  box-shadow: none;
}

.cco-stat__icon svg {
  width: 20px;
  height: 20px;
}

.cco-stat__icon .cco-weather-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  line-height: 1;
  color: inherit;
}

.cco-stat__icon .cco-weather-icon--clear,
.cco-stat__icon .cco-weather-icon--partly {
  color: #b8860b;
}

.cco-stat__icon .cco-weather-icon--night {
  color: #5a6a8a;
}

.cco-stat__value {
  margin: 0;
  font-family: var(--cco-font-title);
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  font-weight: 700;
  line-height: 1;
  color: var(--cco-vino-xdk);
  letter-spacing: 0.02em;
}

.cco-stat__number {
  font-variant-numeric: tabular-nums;
}

.cco-stat__label {
  margin: 5px 0 0;
  font-family: var(--cco-font-ui);
  font-size: var(--cco-type-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(78, 11, 29, 0.72);
  line-height: 1.3;
}

.cco-stat__meta,
.cco-stat__date {
  display: none;
}

@media (max-width: 900px) {
  .cco-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .cco-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cco-stat {
    padding: 12px 12px;
    gap: 10px;
  }

  .cco-stat__icon {
    width: 38px;
    height: 38px;
  }

  .cco-stat__value {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .cco-hero-zone {
    margin-top: 0;
  }

  .cco-hero,
  .cco-hero__track,
  .cco-hero__inner {
    /* +25% sobre el alto móvil previo (38.5vh). */
    min-height: 48vh;
  }

  .cco-hero__inner {
    align-items: flex-end;
    padding: 88px 18px 52px;
    box-sizing: border-box;
  }

  .cco-hero__content {
    max-width: 100%;
    width: 100%;
  }

  .cco-hero__slide:first-child .cco-hero__content {
    max-width: 100%;
  }

  .cco-hero__title {
    margin: 0 0 10px;
    font-size: clamp(1.35rem, 5.6vw, 1.85rem);
    line-height: 1.12;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
  }

  .cco-hero__desc {
    margin: 0 0 16px;
    font-size: clamp(0.84rem, 3.4vw, 0.98rem);
    line-height: 1.45;
    max-width: 36ch;
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.5);
  }

  .cco-hero__btn {
    padding: 10px 16px;
    font-size: 0.72rem;
  }

  .cco-hero__actions {
    gap: 0.55rem;
  }

  .cco-hero__dots {
    bottom: 14px;
  }

  .cco-hero__slide--mercurio .cco-hero__bg {
    background-position: center, right center;
    background-size: 100% 100%, cover;
  }

  /*
   * Móvil: vidrio oscuro transparente (no guinda).
   * Deja ver la foto y mantiene legible el texto.
   */
  .cco-hero__bg::after,
  .cco-hero__slide.has-overlay .cco-hero__bg::after,
  .cco-hero__slide:first-child .cco-hero__bg::after,
  .cco-hero__slide--mercurio .cco-hero__bg::after {
    background:
      linear-gradient(
        180deg,
        rgba(8, 10, 14, 0.38) 0%,
        rgba(6, 8, 12, 0.55) 45%,
        rgba(4, 5, 8, 0.72) 100%
      );
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  .cco-ticker__badge-text {
    font-size: 11px;
  }

  .cco-ticker__move {
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .cco-hero,
  .cco-hero__track,
  .cco-hero__inner {
    min-height: 52vh;
  }

  .cco-hero__inner {
    padding: 84px 16px 48px;
  }

  .cco-hero__title {
    font-size: clamp(1.25rem, 6vw, 1.55rem);
  }

  .cco-hero__desc {
    font-size: 0.84rem;
    max-width: none;
  }

  .cco-ticker__badge-text {
    display: none;
  }
}

/* ══════════════════════════════════════════
   Portada — secciones centrales
   ══════════════════════════════════════════ */

.cco-home-main {
  background: var(--cco-bg-page);
  overflow-x: clip;
  margin-top: -1px;
}

.cco-sec {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  /* Aparición: Lego Motion (data-cco-motion) — no duplicar opacity aquí */
}

/* ── Audiences (tema claro hueso) ── */
.cco-sec--audiences {
  position: relative;
  margin-top: 0;
  padding: clamp(1.75rem, 3.5vw, 2.75rem) 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(189, 176, 70, 0.08), transparent 55%),
    #f4efe6;
}

.cco-sec--audiences .cco-container {
  position: relative;
  z-index: 1;
}

.cco-sec--audiences__head {
  margin: 0 0 1.25rem;
  text-align: center;
}

.cco-sec--audiences__title {
  margin: 0;
  font-family: var(--cco-font-title);
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  font-weight: 700;
  color: var(--cco-vino-xdk);
}

.cco-audiences {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

a.cco-audience {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.cco-audience {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px 18px 18px;
  border-radius: 12px;
  border: 1px solid rgba(136, 20, 51, 0.1);
  background: #fff;
  box-shadow: 0 4px 18px rgba(78, 11, 29, 0.06);
  overflow: hidden;
  opacity: 0;
  transition:
    transform var(--cco-ease),
    border-color var(--cco-ease),
    box-shadow var(--cco-ease);
}

.cco-audience::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cco-gold), var(--cco-gold-lt));
  opacity: 0;
  transition: opacity var(--cco-ease);
}

.cco-sec.is-visible .cco-audience,
.cco-sec[data-cco-reveal="eager"] .cco-audience {
  animation: cco-audience-in 0.6s ease both;
  animation-delay: var(--cco-audience-delay, 0ms);
}

@keyframes cco-audience-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.cco-audience:hover {
  transform: translateY(-3px);
  border-color: rgba(189, 176, 70, 0.55);
  box-shadow: 0 10px 28px rgba(78, 11, 29, 0.1);
}

.cco-audience:hover::before {
  opacity: 1;
}

.cco-audience:focus-visible {
  outline: 2px solid var(--cco-gold-lt);
  outline-offset: 3px;
}

.cco-audience__top,
.cco-audience__index {
  display: none;
}

.cco-audience__title {
  margin: 0 0 8px;
  font-family: var(--cco-font-title);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: var(--cco-vino);
}

.cco-audience__text {
  margin: 0 0 14px;
  flex: 1;
  font-family: var(--cco-font-article);
  font-size: var(--cco-type-sm);
  line-height: 1.5;
  color: var(--cco-text-muted);
}

.cco-audience__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: flex-start;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(136, 20, 51, 0.16);
  background: rgba(136, 20, 51, 0.04);
  font-family: var(--cco-font-ui);
  font-size: var(--cco-type-xs);
  font-weight: 700;
  letter-spacing: var(--cco-track-label);
  text-transform: uppercase;
  color: var(--cco-vino);
  transition: background var(--cco-ease), color var(--cco-ease), border-color var(--cco-ease), gap var(--cco-ease), transform var(--cco-ease);
}

.cco-audience__cta svg {
  width: 13px;
  height: 13px;
  transition: transform var(--cco-ease);
}

.cco-audience:hover .cco-audience__cta {
  background: var(--cco-vino);
  border-color: var(--cco-vino);
  color: var(--cco-white);
  gap: 11px;
  transform: translateY(-1px);
}

.cco-audience:hover .cco-audience__cta svg {
  transform: translateX(2px);
}

/* ── Video Noticias empresariales ── */
.cco-sec--video {
  background: var(--cco-bg-page);
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
}

.cco-sec--video-archive {
  padding: clamp(1.75rem, 4vw, 2.75rem) 0 clamp(1.25rem, 2.5vw, 2rem);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cco-video-gallery__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 1rem;
  font-family: var(--cco-font-ui);
  font-size: var(--cco-type-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cco-text-muted);
}

.cco-video-gallery__crumb a {
  color: var(--cco-vino);
  text-decoration: none;
}

.cco-video-gallery__crumb a:hover {
  text-decoration: underline;
}

.cco-video-gallery__crumb-current {
  color: var(--cco-charcoal);
}

.cco-sec--video__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.cco-video-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.cco-video-gallery__aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.cco-video-gallery__more {
  align-self: stretch;
  justify-content: center;
}

.cco-video-gallery__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.cco-video-gallery__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(136, 20, 51, 0.18);
  background: var(--cco-white);
  color: var(--cco-vino);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--cco-ease), border-color var(--cco-ease), color var(--cco-ease);
}

.cco-video-gallery__arrow:hover {
  background: var(--cco-vino);
  border-color: var(--cco-vino);
  color: var(--cco-gold-lt);
}

.cco-video-gallery__media.is-animating img,
.cco-video-gallery__meta.is-animating {
  animation: cco-video-slide-in 0.55s ease both;
}

@keyframes cco-video-slide-in {
  from {
    opacity: 0;
    transform: translateX(18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cco-video-gallery__main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.cco-video-gallery__featured {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 4px 18px rgba(0, 0, 0, 0.08),
    0 18px 48px rgba(78, 11, 29, 0.12);
  transition: transform var(--cco-ease), box-shadow var(--cco-ease);
}

.cco-video-gallery__featured:hover,
.cco-video-gallery__featured:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.1),
    0 22px 56px rgba(78, 11, 29, 0.16);
}

.cco-video-gallery__featured:focus-visible {
  outline: 2px solid var(--cco-gold);
  outline-offset: 3px;
}

.cco-video-gallery__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--cco-vino-xdk);
  overflow: hidden;
}

.cco-video-gallery__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.cco-video-gallery__featured:hover .cco-video-gallery__media img,
.cco-video-gallery__featured:focus-visible .cco-video-gallery__media img {
  transform: scale(1.03);
}

.cco-video-gallery__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 6, 8, 0.1) 0%, rgba(10, 6, 8, 0.42) 100%),
    radial-gradient(circle at 50% 50%, transparent 30%, rgba(78, 11, 29, 0.2) 100%);
  transition: background 0.35s ease;
}

.cco-video-gallery__play {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  pointer-events: none;
}

.cco-video-gallery__play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--cco-vino) 0%, var(--cco-vino-dk) 100%);
  border: 2px solid var(--cco-gold);
  color: var(--cco-gold-lt);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cco-video-gallery__play-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 3px;
}

.cco-video-gallery__featured:hover .cco-video-gallery__play-btn,
.cco-video-gallery__featured:focus-visible .cco-video-gallery__play-btn {
  transform: scale(1.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
}

.cco-video-gallery__play-label {
  font-family: var(--cco-font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.cco-video-gallery__meta {
  padding: 16px 4px 0;
}

.cco-video-gallery__title {
  margin: 0 0 8px;
  font-family: var(--cco-font-article);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--cco-charcoal);
}

.cco-video-gallery__desc {
  margin: 0;
  font-family: var(--cco-font-article);
  font-size: var(--cco-type-sm);
  line-height: 1.55;
  color: var(--cco-text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cco-video-gallery__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: min(520px, 68vw);
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(136, 20, 51, 0.35) transparent;
}

.cco-video-gallery__item {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  background: var(--cco-white);
  cursor: pointer;
  text-align: left;
  transition: border-color var(--cco-ease), box-shadow var(--cco-ease), background var(--cco-ease);
}

.cco-video-gallery__item:hover,
.cco-video-gallery__item:focus-visible {
  border-color: rgba(189, 176, 70, 0.5);
  box-shadow: 0 6px 18px rgba(78, 11, 29, 0.08);
}

.cco-video-gallery__item:focus-visible {
  outline: 2px solid var(--cco-gold);
  outline-offset: 2px;
}

.cco-video-gallery__item.is-active {
  border-color: rgba(136, 20, 51, 0.35);
  background: linear-gradient(135deg, rgba(136, 20, 51, 0.05), rgba(189, 176, 70, 0.08));
  box-shadow: 0 4px 14px rgba(78, 11, 29, 0.08);
}

.cco-video-gallery__item-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: var(--cco-vino-xdk);
}

.cco-video-gallery__item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cco-video-gallery__item-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 6, 8, 0.28);
  color: var(--cco-gold-lt);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.cco-video-gallery__item-play svg {
  width: 22px;
  height: 22px;
  margin-left: 2px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.cco-video-gallery__item:hover .cco-video-gallery__item-play,
.cco-video-gallery__item.is-active .cco-video-gallery__item-play {
  opacity: 1;
}

.cco-video-gallery__item-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.cco-video-gallery__item-title {
  font-family: var(--cco-font-ui);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--cco-charcoal);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cco-video-gallery__item-desc {
  font-family: var(--cco-font-article);
  font-size: 12px;
  line-height: 1.4;
  color: var(--cco-text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 960px) {
  .cco-video-gallery {
    grid-template-columns: 1fr;
  }

  .cco-video-gallery__list {
    max-height: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }
}

@media (max-width: 640px) {
  .cco-sec--video__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .cco-video-gallery__list {
    grid-template-columns: 1fr;
  }

  .cco-video-gallery__play-btn {
    width: 60px;
    height: 60px;
  }

  .cco-video-gallery__play-btn svg {
    width: 24px;
    height: 24px;
  }
}

/* ── Services ── */
.cco-sec--services {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f3ec 0%, var(--cco-bg-page) 100%);
}

.cco-sec--services__mark {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  overflow: hidden;
}

.cco-sec--services__mark img {
  width: min(520px, 72vw);
  height: auto;
  opacity: 0.08;
  filter: brightness(0);
  user-select: none;
  transform: translateX(18%);
}

.cco-sec--services > .cco-container {
  position: relative;
  z-index: 1;
}

.cco-sec--services__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.cco-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cco-service {
  display: flex;
  flex-direction: column;
  padding: 24px 22px 22px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--cco-white);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  transition: transform var(--cco-ease), border-color var(--cco-ease), box-shadow var(--cco-ease);
}

.cco-service:hover {
  transform: translateY(-4px);
  border-color: rgba(189, 176, 70, 0.55);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.cco-service:hover .cco-service__icon {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(136, 20, 51, 0.28);
}

.cco-service__icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 14px;
  color: var(--cco-gold-lt);
  background: linear-gradient(145deg, var(--cco-vino) 0%, var(--cco-vino-dk) 100%);
  border: 2px solid rgba(189, 176, 70, 0.38);
  box-shadow: 0 6px 18px rgba(136, 20, 51, 0.2);
  transition: transform var(--cco-ease), box-shadow var(--cco-ease);
}

.cco-service__icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.7;
}

.cco-service__badge {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(189, 176, 70, 0.14);
  color: var(--cco-gold-dk);
  font-family: var(--cco-font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cco-service__title {
  margin: 0 0 8px;
  font-family: var(--cco-font-article);
  font-size: clamp(1.08rem, 1.55vw, 1.26rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: #454545;
}

.cco-service__text {
  margin: 0 0 14px;
  flex: 1;
  font-family: var(--cco-font-article);
  font-size: var(--cco-type-sm);
  line-height: 1.48;
  color: var(--cco-text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cco-service--contact {
  background: linear-gradient(160deg, var(--cco-vino-xdk) 0%, var(--cco-vino-dk) 100%);
  border-color: rgba(189, 176, 70, 0.22);
  box-shadow: 0 8px 28px rgba(78, 11, 29, 0.22);
}

.cco-service--contact:hover {
  border-color: rgba(189, 176, 70, 0.42);
  box-shadow: 0 14px 36px rgba(78, 11, 29, 0.3);
}

.cco-service--contact .cco-service__title {
  color: rgba(255, 255, 255, 0.96);
}

.cco-service--contact .cco-service__text {
  color: rgba(255, 255, 255, 0.72);
}

.cco-service--contact .cco-service__badge {
  background: rgba(189, 176, 70, 0.18);
  color: var(--cco-gold-lt);
}

.cco-service--contact .cco-service__icon {
  color: var(--cco-gold-lt);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(189, 176, 70, 0.42);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.cco-service--contact .cco-service__link {
  color: var(--cco-gold-lt) !important;
}

.cco-service__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--cco-font-ui);
  font-size: var(--cco-type-sm);
  font-weight: 700;
  letter-spacing: var(--cco-track-label);
  text-transform: uppercase;
  color: var(--cco-vino) !important;
}

.cco-service__link svg {
  width: 13px;
  height: 13px;
  transition: transform var(--cco-ease);
}

.cco-service__link:hover svg {
  transform: translateX(3px);
}

.cco-services-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding: 18px 22px;
  border-radius: 12px;
  border: 1px dashed rgba(136, 20, 51, 0.22);
  background: rgba(136, 20, 51, 0.04);
}

.cco-services-cta p {
  margin: 0;
  font-family: var(--cco-font-article);
  font-size: var(--cco-type-md);
  color: var(--cco-text-muted);
}

.cco-services-cta__btn {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: var(--cco-radius);
  background: var(--cco-vino);
  color: var(--cco-white) !important;
  font-family: var(--cco-font-ui);
  font-size: var(--cco-type-sm);
  font-weight: 700;
  letter-spacing: var(--cco-track-label);
  text-transform: uppercase;
  transition: background var(--cco-ease), transform var(--cco-ease);
}

.cco-services-cta__btn:hover {
  background: var(--cco-vino-dk);
  transform: translateY(-2px);
}

/* ── News ── */
.cco-sec--news {
  background: var(--cco-white);
}

.cco-sec--news__head {
  margin: 0 0 1.25rem;
  text-align: center;
}

.cco-sec--news__title {
  margin: 0;
  font-family: var(--cco-font-title);
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  font-weight: 700;
  color: var(--cco-vino-xdk);
}

.cco-sec--news__top,
.cco-sec--news .cco-sec-head__line,
.cco-sec--news .cco-sec-head__lead,
.cco-news-carousel__controls,
.cco-news-carousel__all,
.cco-news-carousel__arrows {
  display: none !important;
}

/* News carousel — arrastre / swipe */
.cco-news-carousel__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x;
  user-select: none;
  -webkit-user-select: none;
}

.cco-news-carousel__track::-webkit-scrollbar {
  display: none;
}

.cco-news-carousel__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.cco-news-carousel__track.is-dragging a {
  pointer-events: none;
}

/* ── Affiliate ── */
.cco-sec--affiliate {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 85% 75% at 62% 48%, rgba(255, 255, 255, 0.07), transparent 55%),
    linear-gradient(
      118deg,
      var(--cco-vino-xdk) 0%,
      #4a0a1c 32%,
      var(--cco-vino) 68%,
      #9b1a42 100%
    );
  padding: clamp(3.75rem, 7vw, 5.25rem) 0;
}

.cco-sec--affiliate__mark {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}

.cco-sec--affiliate__mark img {
  width: min(540px, 78vw);
  height: auto;
  opacity: 0.09;
  filter: brightness(0) invert(1);
  user-select: none;
  transform: translateX(8%);
}

.cco-sec--affiliate__glow {
  position: absolute;
  inset: -20% -10%;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 40%, rgba(189, 176, 70, 0.08), transparent 42%),
    radial-gradient(circle at 82% 62%, rgba(255, 255, 255, 0.05), transparent 38%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.14) 0%, transparent 42%, rgba(255, 255, 255, 0.03) 100%);
  pointer-events: none;
}

.cco-sec--affiliate__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

.cco-affiliate__kicker {
  margin: 0 0 12px;
  font-family: var(--cco-font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212, 200, 78, 0.9);
}

.cco-affiliate__title {
  margin: 0;
  font-family: var(--cco-font-article);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: 0.01em;
  color: var(--cco-white);
}

.cco-affiliate__highlight {
  color: var(--cco-gold-lt);
  font-weight: 600;
}

.cco-affiliate__line {
  width: 42px;
  height: 2px;
  margin: 20px 0 22px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cco-gold-lt), rgba(189, 176, 70, 0.35));
}

.cco-affiliate__lead {
  margin: 0 0 28px;
  max-width: 48ch;
  font-family: var(--cco-font-article);
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.cco-affiliate__benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
}

.cco-affiliate__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--cco-font-article);
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.cco-affiliate__benefits strong {
  color: inherit;
  font-weight: 500;
}

.cco-affiliate__check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  color: var(--cco-gold-lt);
  opacity: 0.9;
}

.cco-affiliate__check svg {
  width: 14px;
  height: 14px;
}

.cco-affiliate__plans {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cco-affiliate-plan {
  position: relative;
  padding: 22px 20px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  text-align: center;
  transition: transform var(--cco-ease), border-color var(--cco-ease), background var(--cco-ease);
}

.cco-affiliate-plan:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.09);
}

.cco-affiliate-plan__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--cco-gold-lt);
  background: var(--cco-vino-xdk);
  border: 1px solid rgba(212, 200, 78, 0.32);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  transition: background var(--cco-ease), border-color var(--cco-ease), box-shadow var(--cco-ease), transform var(--cco-ease);
}

.cco-affiliate-plan:hover .cco-affiliate-plan__icon {
  transform: translateY(-2px);
  background: #2a0612;
  border-color: rgba(212, 200, 78, 0.48);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
}

.cco-affiliate-plan__icon svg {
  width: 22px;
  height: 22px;
}

.cco-affiliate-plan__title {
  margin: 0 0 6px;
  font-family: var(--cco-font-article);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cco-white);
}

.cco-affiliate-plan__text {
  margin: 0 0 14px;
  font-family: var(--cco-font-article);
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
}

.cco-affiliate-plan__btn {
  display: block;
  padding: 9px 14px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--cco-white) !important;
  font-family: var(--cco-font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background var(--cco-ease), border-color var(--cco-ease), color var(--cco-ease), transform var(--cco-ease);
}

.cco-affiliate-plan__btn:hover,
.cco-affiliate-plan__btn:focus-visible {
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.32);
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--cco-white) !important;
}

.cco-affiliate-plan__btn:active {
  transform: translateY(0);
  background: rgba(0, 0, 0, 0.48);
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.92) !important;
}

/* ── Partners marquee ── */
.cco-sec--partners {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(136, 20, 51, 0.05), transparent 58%),
    linear-gradient(180deg, #ebe4d9 0%, var(--cco-page-bg, #f0ebe3) 38%, #f5f1ea 100%);
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(3.25rem, 6.5vw, 5rem);
  border-top: 1px solid rgba(136, 20, 51, 0.08);
}

.cco-sec--partners::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cco-vino-xdk), var(--cco-gold-lt) 48%, var(--cco-vino-xdk));
  opacity: 0.85;
}

.cco-sec--partners__head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 24px;
}

.cco-partners__kicker,
.cco-partners__line,
.cco-partners__lead {
  display: none !important;
}

.cco-partners__title {
  margin: 0;
  font-family: var(--cco-font-title);
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--cco-vino-xdk);
}

.cco-partners__accent {
  color: inherit;
  font-weight: inherit;
}

.cco-partners-marquee {
  position: relative;
  padding: 8px 0 4px;
}

.cco-partners-marquee__viewport {
  overflow: hidden;
  padding: 12px 0 16px;
}

.cco-partners-marquee__track {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  width: max-content;
  animation: cco-partners-marquee 52s linear infinite;
  will-change: transform;
}

.cco-partners-marquee:hover .cco-partners-marquee__track,
.cco-partners-marquee:focus-within .cco-partners-marquee__track {
  animation-play-state: paused;
}

.cco-partners-marquee__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(48px, 8vw, 120px);
  z-index: 2;
  pointer-events: none;
}

.cco-partners-marquee__fade--left {
  left: 0;
  background: linear-gradient(90deg, var(--cco-page-bg, #f0ebe3), transparent);
}

.cco-partners-marquee__fade--right {
  right: 0;
  background: linear-gradient(270deg, var(--cco-page-bg, #f0ebe3), transparent);
}

.cco-partner-logo {
  flex: 0 0 auto;
  display: block;
  text-decoration: none;
  color: inherit;
}

.cco-partner-logo__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 196px;
  min-width: 196px;
  max-width: 196px;
  height: 110px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(136, 20, 51, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  transition: border-color var(--cco-ease), background var(--cco-ease), box-shadow var(--cco-ease), transform var(--cco-ease);
}

.cco-partner-logo--square .cco-partner-logo__frame {
  width: 110px;
  min-width: 110px;
  max-width: 110px;
  height: 110px;
  padding: 14px;
}

.cco-partner-logo--wide .cco-partner-logo__frame,
.cco-partner-logo--auto .cco-partner-logo__frame {
  width: 196px;
  min-width: 196px;
  max-width: 196px;
  height: 110px;
}

.cco-partner-logo__text {
  display: block;
  font-family: var(--cco-font-ui);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  color: #7a7a7a;
  transition: color 0.35s ease;
}

.cco-partner-logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.cco-partner-logo:hover .cco-partner-logo__frame,
.cco-partner-logo:focus-visible .cco-partner-logo__frame {
  border-color: rgba(189, 176, 70, 0.85);
  background: var(--cco-white);
  box-shadow:
    0 12px 28px rgba(136, 20, 51, 0.12),
    0 0 0 1px rgba(189, 176, 70, 0.35);
  transform: translateY(-3px) scale(1.04);
}

.cco-partner-logo:hover img,
.cco-partner-logo:focus-visible img {
  transform: scale(1.06);
}

.cco-partner-logo:hover .cco-partner-logo__text,
.cco-partner-logo:focus-visible .cco-partner-logo__text {
  color: var(--cco-vino);
  transform: scale(1.02);
}

@keyframes cco-partners-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cco-partners-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
  }

  .cco-partners-marquee__fade {
    display: none;
  }
}

/* Responsive — secciones centrales */
@media (max-width: 1100px) {
  .cco-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cco-sec--affiliate__inner {
    grid-template-columns: 1fr;
  }

  .cco-affiliate__benefits {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .cco-audiences {
    grid-template-columns: 1fr;
  }

  .cco-services {
    grid-template-columns: 1fr;
  }

  .cco-sec--services__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .cco-services-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cco-services-cta__btn {
    justify-content: center;
  }
}
