/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 20 2026 | 04:58:46 */
.hero-casino-uy {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 4rem 0; /* Espaciado superior e inferior para dar aire */
  box-sizing: border-box;
  background: transparent; /* Sin fondos raros, se integra con tu plantilla */
}

/* Título Impactante */
.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem); /* Tamaño fluido según la pantalla */
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 2rem 0;
  color: #ffffff; /* Texto blanco puro */
  text-align: left;
}

/* Texto con degradado (Cyan/Azul a juego con tu menú) */
.gradient-text {
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Párrafo destacado (Lead) */
.hero-lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.7;
  color: #b3b3b3; /* Gris claro de alta legibilidad sobre negro */
  font-weight: 400;
  margin: 0 0 3rem 0;
}

/* Contenedor de la Imagen / Elemento Visual */
.hero-image-wrapper {
  width: 100%;
  margin: 0 0 3rem 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 242, 254, 0.15); /* Brillo sutil de neón azul */
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #111; /* Fondo temporal mientras carga la imagen */
}

.hero-image {
  width: 100%;
  height: auto;
  max-height: 500px; /* Evita que la foto sea gigante verticalmente */
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Efecto hover elegante para la imagen */
.hero-image-wrapper:hover .hero-image {
  transform: scale(1.02);
}

/* Segundo Párrafo */
.hero-body {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.7;
  color: #a0a0a0;
  margin: 0;
}

/* ==========================================================================
   RESPONSIVO (Ajustes finos para móviles)
   ========================================================================== */
@media (max-width: 768px) {
  .hero-casino-uy {
    padding: 2.5rem 0;
  }
  
  .hero-title {
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
  }

  .hero-lead {
    margin-bottom: 2rem;
  }

  .hero-image-wrapper {
    border-radius: 8px;
    margin-bottom: 2rem;
  }
}







.table-section-uy {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 3rem 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #cccccc;
}

.section-main-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.02em;
}

.section-lead-text {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.7;
  color: #b3b3b3;
  margin: 0 0 2.5rem 0;
}

.section-sub-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #00f2fe; /* Color cyan a juego con tu web */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1.5rem 0;
}

/* --- TABLA REINVENTADA --- */
.casino-table-wrapper {
  width: 100%;
  margin: 0 0 3.5rem 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.casino-custom-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

/* Cabecera */
.casino-custom-table th {
  padding: 1.2rem 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888888;
  border-bottom: 2px solid rgba(0, 242, 254, 0.3); /* Línea cyan sutil */
  font-weight: 700;
}

/* Filas */
.casino-custom-table td {
  padding: 1.2rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 1.05rem;
  vertical-align: middle;
}

/* Efecto hover en las filas (sin volverse tarjeta, solo resalta la línea) */
.casino-custom-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* Estilos de celdas específicas */
.casino-name {
  font-weight: 700;
  color: #ffffff;
  font-size: 1.1rem;
}

.casino-score {
  color: #888888;
  font-weight: 500;
}

.casino-score span {
  color: #00f2fe; /* Nota destacada en Cyan */
  font-weight: 700;
}

.casino-bonus {
  color: #e0e0e0;
  font-weight: 600;
}

.casino-badge {
  color: #a0a0a0;
  font-size: 0.9rem;
}

/* --- SECCIÓN CTA ACCESIBLE --- */
.casino-cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 2rem 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  margin-top: 2rem;
}

.casino-cta-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #b3b3b3;
  margin: 0;
  flex: 1;
}

.casino-cta-text strong {
  color: #ffffff;
}

/* Botón de conversión brutal */
.casino-cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  color: #000000 !important; /* Texto negro para contraste perfecto */
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
}

.casino-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 242, 254, 0.5);
  opacity: 0.95;
}

/* ==========================================
   RESPONSIVO (Optimización móvil total)
   ========================================== */
@media (max-width: 768px) {
  /* Transformamos la tabla en bloques scannables verticales para que no se corte */
  .casino-custom-table thead {
    display: none; /* Ocultamos cabecera en móvil */
  }

  .casino-custom-table tr {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .casino-custom-table td {
    display: block;
    padding: 0.25rem 0;
    border: none;
    font-size: 1rem;
  }

  .casino-name {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
  }

  /* Agregamos etiquetas simuladas en móvil para saber qué es cada cosa */
  .casino-score::before { content: "Puntuación: "; color: #666; font-size: 0.85rem; }
  .casino-bonus::before { content: "Bono: "; color: #666; font-size: 0.85rem; }
  .casino-badge::before { content: "Licencia: "; color: #666; font-size: 0.85rem; }

  /* Ajuste del CTA */
  .casino-cta-container {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    text-align: center;
  }

  .casino-cta-button {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }
}










.evaluation-section-uy {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 3rem 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #cccccc;
}

.main-section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 1.2rem 0;
  letter-spacing: -0.02em;
}

.main-section-desc {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.7;
  color: #b3b3b3;
  margin: 0 0 3rem 0;
}

/* --- GRID DE CRITERIOS (Ancho completo) --- */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.criteria-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.criteria-num {
  font-size: 2rem;
  font-weight: 900;
  color: #00f2fe; /* Código de color cyan de tu menú */
  line-height: 1;
  font-family: monospace;
}

.criteria-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.8rem 0;
}

.criteria-body p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #a0a0a0;
  margin: 0;
  text-align: justify;
}

/* Separador elegante */
.section-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,242,254,0.4) 0%, rgba(255,255,255,0.05) 100%);
  margin: 4rem 0;
}

/* --- LISTA DE BONOS PREMIUM --- */
.premium-bonus-list {
  list-style: none;
  padding: 0;
  margin: 0 0 4rem 0;
}

.premium-bonus-list li {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bonus-tag {
  display: inline-block;
  min-width: 110px;
  padding: 0.4rem 0.8rem;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  color: #00f2fe;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  border-radius: 4px;
}

.bonus-list-content {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #cccccc;
  flex: 1;
}

.bonus-list-content strong {
  color: #ffffff;
}

/* --- BLOQUE DE EXPLICACIÓN DE ROLLOVER --- */
.rollover-highlight-box {
  width: 100%;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

.rollover-highlight-box h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem 0;
}

.rollover-highlight-box p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #a0a0a0;
  margin: 0;
}

/* ==========================================
   RESPONSIVO (Móvil y Tablets)
   ========================================== */
@media (max-width: 991px) {
  .criteria-grid {
    grid-template-columns: 1fr; /* Pasa a una columna sola en móvil */
    gap: 2rem;
  }
  
  .premium-bonus-list li {
    flex-direction: column; /* Tag arriba, texto abajo */
    gap: 0.8rem;
    padding: 1.2rem 0;
  }

  .bonus-tag {
    min-width: auto;
    width: fit-content;
  }
}










.casino-features-section {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 2rem 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #cccccc;
}

.premium-heading {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  margin: 3.5rem 0 1.2rem 0;
  letter-spacing: -0.02em;
}

.premium-description {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.7;
  color: #b3b3b3;
  margin: 0 0 2.5rem 0;
}

/* --- LISTA JUEGOS EN VIVO --- */
.live-games-list {
  list-style: none;
  padding: 0;
  margin: 0 0 3.5rem 0;
}

.live-games-list li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.live-indicator {
  font-size: 0.7rem;
  font-weight: 800;
  color: #00f2fe;
  background: rgba(0, 242, 254, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  border: 1px solid rgba(0, 242, 254, 0.3);
  letter-spacing: 0.1em;
}

.game-info {
  font-size: 1.05rem;
  line-height: 1.6;
}

.game-info strong {
  color: #ffffff;
}

/* --- BLOQUES NUMÉRICOS (APPS Y ERRORES) --- */
.numeric-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.errors-layout {
  grid-template-columns: repeat(2, 1fr); /* 2x2 para errores */
  gap: 2.5rem;
}

.step-box {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-num {
  font-size: 1.8rem;
  font-weight: 900;
  font-family: monospace;
  color: #00f2fe;
  line-height: 1;
}

.step-num.alert-color {
  color: #ff3b30; /* Rojo sutil de alerta para la sección de errores */
}

.step-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #a0a0a0;
}

.step-text strong {
  color: #ffffff;
}

/* --- GRID DE VENTAJAS (Ancho completo lineal) --- */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
}

.adv-item h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin: 0 0 0.8rem 0;
  font-weight: 700;
}

.adv-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #888888;
  margin: 0;
}

/* --- BANNER CTA FINAL PREMIUM --- */
.final-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin: 5rem 0 2rem 0;
  padding: 3rem 0;
  border-top: 2px solid #00f2fe; /* Línea de acento superior */
}

.final-cta-content h3 {
  font-size: 1.8rem;
  color: #ffffff;
  margin: 0 0 0.8rem 0;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.final-cta-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #a0a0a0;
  margin: 0;
  max-width: 80ch;
}

.final-cta-btn {
  display: inline-block;
  padding: 1.2rem 2.8rem;
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  color: #000000 !important;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1rem;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 242, 254, 0.25);
}

.final-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 242, 254, 0.45);
}

/* ==========================================
   RESPONSIVO MULTIDISPOSITIVO
   ========================================== */
@media (max-width: 991px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr); /* 2x2 en tablets */
  }
}

@media (max-width: 768px) {
  .numeric-steps, .errors-layout {
    grid-template-columns: 1fr; /* Una columna en móvil */
    gap: 2rem;
  }

  .advantages-grid {
    grid-template-columns: 1fr; /* Una columna en móvil */
    gap: 1.8rem;
  }

  .final-cta-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 2rem;
    padding: 2rem 0;
  }

  .final-cta-btn {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }
}







.regulatory-faq-section {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 2rem 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #cccccc;
}

.cyber-heading {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  margin: 3.5rem 0 1.2rem 0;
  letter-spacing: -0.02em;
}

.cyber-paragraph {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.7;
  color: #b3b3b3;
  margin: 0 0 1.5rem 0;
}

/* --- BLOQUE DE INTELIGENCIA ARTIFICIAL DE ALTO IMPACTO --- */
.ai-highlight-block {
  width: 100%;
  margin: 3.5rem 0;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(0, 242, 254, 0.2);
  border-bottom: 1px solid rgba(0, 242, 254, 0.2);
  position: relative;
}

.ai-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  color: #00f2fe;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.ai-highlight-block h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1.2rem 0;
}

.ai-highlight-block p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #a0a0a0;
  margin: 0 0 1.5rem 0;
}

.ai-highlight-block p:last-child {
  margin-bottom: 0;
}

/* --- GRID DE MÉTODOS DE PAGO LINEALES --- */
.payments-container-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2.5rem 0 4rem 0;
}

.payment-card-line {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pay-type {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  min-width: 75px;
  text-align: center;
}

.text-type { background: rgba(255,255,255,0.05); color: #fff; border: 1px solid rgba(255,255,255,0.1); }
.ewallet-type { background: rgba(79, 172, 254, 0.1); color: #4facfe; border: 1px solid rgba(79, 172, 254, 0.2); }
.crypto-type { background: rgba(0, 242, 254, 0.1); color: #00f2fe; border: 1px solid rgba(0, 242, 254, 0.2); }
.cash-type { background: rgba(255, 204, 0, 0.1); color: #ffcc00; border: 1px solid rgba(255, 204, 0, 0.2); }

.pay-info {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #cccccc;
}

.pay-info strong {
  color: #ffffff;
}

/* --- SECCIÓN FAQ PURE CSS --- */
.faq-pure-css {
  margin: 2.5rem 0 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-pure-item {
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-pure-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.8rem 0;
}

.faq-pure-item p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #a0a0a0;
  margin: 0;
}

/* --- CONCLUSIÓN EDITORIAL --- */
.final-editorial-closure {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================
   RESPONSIVO
   ========================================== */
@media (max-width: 768px) {
  .payments-container-grid {
    grid-template-columns: 1fr; /* Una sola columna para pagos en móviles */
    gap: 1.5rem;
  }

  .payment-card-line {
    flex-direction: column; /* Tag arriba, texto abajo en pantallas pequeñas */
    gap: 0.6rem;
  }
  
  .ai-highlight-block {
    padding: 1.5rem 0;
  }
}



.latest-news-section {
  width: 100%;
  max-width: 100%;
  margin: 5rem 0 0 0;
  padding: 4rem 0 2rem 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.news-section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 2.5rem 0;
  letter-spacing: -0.02em;
}

/* Contenedor Grid */
.news-asymmetric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
}

/* Tarjeta Base */
.news-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

/* Tarjeta 1 (La más reciente) arriba, ocupando las 2 columnas */
.news-card-featured-full {
  grid-column: span 2;
  min-height: 460px; /* Un poco más de presencia en altura */
}

/* Capa de contraste */
.news-card-overlay {
  width: 100%;
  height: 100%;
  padding: 2.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.1) 100%);
  transition: background 0.4s ease;
}

/* Elementos meta */
.news-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.news-card-date {
  font-size: 0.75rem;
  font-weight: 700;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Pequeña etiqueta de "Nuevo" para el post principal */
.news-card-badge-new {
  font-size: 0.7rem;
  font-weight: 800;
  color: #00f2fe;
  background: rgba(0, 242, 254, 0.1);
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  border: 1px solid rgba(0, 242, 254, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Títulos */
.news-card-title {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.8rem 0;
  line-height: 1.25;
  transition: color 0.3s ease;
}

/* El título de la tarjeta gigante toma más peso */
.news-card-featured-full .news-card-title {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  max-width: 85%;
}

/* Descripciones cortas */
.news-card-excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #b3b3b3;
  margin: 0 0 1.5rem 0;
  max-width: 90%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-featured-full .news-card-excerpt {
  max-width: 75%;
}

.news-card-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}

/* --- INTERACCIONES --- */
.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 242, 254, 0.3);
}

.news-card:hover .news-card-title {
  color: #00f2fe;
}

.news-card:hover .news-card-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.2) 100%);
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */
@media (max-width: 991px) {
  .news-card-featured-full .news-card-title,
  .news-card-featured-full .news-card-excerpt {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .news-asymmetric-grid {
    grid-template-columns: 1fr; /* Una columna para todo en móviles */
    gap: 1.5rem;
  }

  .news-card-featured-full {
    grid-column: span 1;
    min-height: 380px;
  }

  .news-card-overlay {
    padding: 1.5rem;
  }
}















.operator-premium-banner {
  width: 100%;
  max-width: 100%;
  margin: 3rem 0;
  padding: 2rem 2.5rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Fondo asfalto oscuro con un sutil gradiente interno */
  background: linear-gradient(135deg, #0d0e12 0%, #14161d 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 4px solid #00f2fe; /* Línea de acento cyan de tu identidad */
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

/* --- BLOQUE IZQUIERDO: BRANDING --- */
.banner-brand-block {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.operator-logo-text {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.04em;
}

.rating-badge {
  background: rgba(39, 201, 63, 0.08);
  border: 1px solid rgba(39, 201, 63, 0.25);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  display: flex;
  align-items: baseline;
  line-height: 1;
}

.rating-num {
  font-size: 1.05rem;
  font-weight: 800;
  color: #27c93f; /* Verde neón de éxito/nota alta */
}

.rating-max {
  font-size: 0.75rem;
  color: rgba(39, 201, 63, 0.6);
  font-weight: 600;
}

.license-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.license-dot {
  width: 6px;
  height: 6px;
  background-color: #888888;
  border-radius: 50%;
}

.license-text {
  font-size: 0.8rem;
  color: #888888;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* --- BLOQUE CENTRAL: OFERTA PROMO --- */
.banner-promo-block {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
  padding-left: 1.5rem;
}

.promo-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: #00f2fe;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.promo-main-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.promo-main-title span {
  color: #ffffff;
  font-weight: 900;
}

/* --- BLOQUE DERECHO: ENLACE / ACCIÓN --- */
.banner-action-block {
  display: flex;
  align-items: center;
}

.banner-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 2.4rem;
  background: #ffffff;
  color: #000000 !important;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.arrow-icon {
  transition: transform 0.3s ease;
}

/* --- EFECTOS HOVER --- */
.operator-premium-banner:hover {
  border-color: rgba(0, 242, 254, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.banner-cta-link:hover {
  background: #00f2fe; /* Se vuelve cyan flúor al pasar el ratón */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 242, 254, 0.3);
}

.banner-cta-link:hover .arrow-icon {
  transform: translateX(4px); /* Desplazamiento dinámico de la flecha */
}

/* ==========================================================================
   RESPONSIVO MULTIDISPOSITIVO (MÓVILES Y TABLETS)
   ========================================================================== */
@media (max-width: 991px) {
  .operator-premium-banner {
    padding: 1.8rem;
  }
  .banner-promo-block {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .operator-premium-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    border-left: none;
    border-top: 3px solid #00f2fe; /* En móviles el acento pasa a la parte superior */
  }

  .banner-brand-block, 
  .banner-promo-block, 
  .banner-action-block {
    width: 100%;
  }

  .banner-cta-link {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
    padding: 1.2rem;
  }
}