/* ========================
   BANNER
======================== */
.banner-section { padding: 0 2rem 4rem; }
.banner-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.25rem;
}
.banner-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  padding: 2.5rem;
  min-height: 200px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.banner-main {
  background: linear-gradient(135deg, var(--surface2), #2a0a0a);
  border: 1px solid var(--border);
}
.banner-main::before {
  content: '';
  position: absolute; top: -30px; right: -30px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(192,39,45,0.2), transparent 70%);
}
.banner-side {
  background: linear-gradient(135deg, #1a0505, #2d0a0a);
  border: 1px solid rgba(192,39,45,0.3);
}
.banner-icon-bg {
  position: absolute; right: 1.5rem; top: 50%; transform: translateY(-50%);
  font-size: 6rem; opacity: 0.08; color: var(--accent);
}
.banner-tag {
  font-size: 0.7rem; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.banner-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.8rem; font-weight: 700; line-height: 1.1;
  margin-bottom: 0.75rem;
}
.banner-title span { color: var(--accent); }
.banner-desc {
  font-size: 0.82rem; color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* ========================
   RESPONSIVE BANNER
======================== */

/* Tablet (≤ 1024px) — reducir padding y fuentes */
@media (max-width: 1024px) {
  .banner-section { padding: 0 1.5rem 3rem; }
  .banner-title { font-size: 1.5rem; }
  .banner-card { padding: 2rem; }
  .banner-icon-bg { font-size: 5rem; }
}

/* Tablet portrait (≤ 768px) — apilar en 1 columna */
@media (max-width: 768px) {
  .banner-section { padding: 0 1rem 2.5rem; }
  .banner-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .banner-card {
    padding: 1.75rem;
    min-height: 180px;
  }
  .banner-main::before {
    width: 180px; height: 180px;
    top: -20px; right: -20px;
  }
  .banner-title { font-size: 1.6rem; }
  .banner-icon-bg { font-size: 5rem; opacity: 0.06; }
}

/* Mobile (≤ 480px) */
@media (max-width: 480px) {
  .banner-section { padding: 0 0.75rem 2rem; }
  .banner-card {
    padding: 1.5rem;
    min-height: 160px;
    border-radius: 12px;
  }
  .banner-title { font-size: 1.4rem; }
  .banner-desc  { font-size: 0.78rem; }
  .banner-tag   { font-size: 0.65rem; }
  .banner-icon-bg { font-size: 4rem; right: 1rem; }
}

/* Small mobile (≤ 360px) */
@media (max-width: 360px) {
  .banner-card { padding: 1.25rem; }
  .banner-title { font-size: 1.25rem; }
  .banner-icon-bg { display: none; } /* evita solapamiento en pantallas muy chicas */
}