/* ===================================================
   FUNDOS ALTERNADOS - DEGRADE DOURADO VS AZUL CLARO
   =================================================== */

/* Fundo A - DEGRADE DOURADO (ímpares) */
.bg-gold-subtle {
  background: linear-gradient(180deg, #0a0805 0%, #120d08 50%, #0a0805 100%) !important;
  position: relative;
}

.bg-gold-subtle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(245, 166, 35, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.bg-gold-subtle .container {
  position: relative;
  z-index: 2;
}

/* Fundo B - DEGRADE AZUL CLARO (pares) */
.bg-blue-subtle {
  background: linear-gradient(180deg, #0a1525 0%, #152535 50%, #0a1525 100%) !important;
  position: relative;
}

.bg-blue-subtle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 163, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.bg-blue-subtle .container {
  position: relative;
  z-index: 2;
}