/* CONTENEDOR MODERNO PARA CADA SECCIÓN */
.section {
  padding: 100px 20px;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  background: linear-gradient(to bottom, #0033A0, #002A87);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: -50px; /* se fusiona mejor con separador */
}

/* VARIANTES DE FONDO */
.section.bg-claro {
  background: linear-gradient(to bottom, #0A4CC4, #0033A0);
}

.section.bg-oscuro {
  background: linear-gradient(to bottom, #001f4d, #000d26);
}

/* TÍTULOS MÁS MODERNOS */
.section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: #ffffff;
}

/* PÁRRAFOS CON MÁS CLARIDAD */
.section p {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.7;
}
/* ESTILO UNIFICADO PARA TÍTULOS DE SECCIÓN */
.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.4rem;
  margin-bottom: 60px;
  color: #ffffff;
  position: relative;
  display: inline-block;
  padding: 15px 40px;
  border-radius: 50px;
  background: linear-gradient(135deg, #DA291C, #0033A0);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  transition: all 0.3s ease;
}
