@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
  background: #1C1E6D;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

/* ===== NAVBAR GENERAL ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #1C1E6D;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ===== CONTENEDOR DE NAVBAR ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== LOGO ===== */
.navbar img.logo {
  height: 40px;
  object-fit: contain;
}

/* ===== LISTA DE ENLACES ===== */
.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

/* ===== CADA ITEM DE LA LISTA ===== */
.navbar ul li {
  padding: 0 10px;
}

/* ===== ENLACES ===== */
.navbar ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  position: relative;
  transition: color 0.3s ease;
}

/* ===== LÍNEA DEBAJO ENLACE ===== */
.navbar ul li a::after {
  content: '';
  width: 0%;
  height: 2px;
  background-color: #4B58F4;
  position: absolute;
  bottom: -4px;
  left: 0;
  transition: width 0.3s ease;
}

.navbar ul li a:hover::after {
  width: 100%;
}

.b1 {
  display: block; /* Porque es una etiqueta personalizada */
  width: 1500px;    /* 100% del ancho de la ventana */
  height: 1500px;   /* 100% del alto de la ventana */
  background-image: url('tu-imagen.jpg'); /* Reemplaza con tu ruta */
  background-size: cover;    /* Abarca toda la pantalla */
  background-position: center;
  background-repeat: no-repeat;
}
.b2 {
  display: block; /* Porque es una etiqueta personalizada */
  width: 1500px;    /* 100% del ancho de la ventana */
  height: 1500px;   /* 100% del alto de la ventana */
  background-image: url('tu-imagen.jpg'); /* Reemplaza con tu ruta */
  background-size: cover;    /* Abarca toda la pantalla */
  background-position: center;
  background-repeat: no-repeat;
}
/* ===== FOOTER ===== */
.footer {
  background-color: #1A1B4B;
  color: #FFFFFF;
  padding: 30px 20px;
  text-align: center;
  margin-top: 60px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer p {
  margin: 0;
  font-size: 14px;
}

.footer-links {
  list-style: none;
  padding: 10px 0 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-links li a {
  color: #CCCCFF;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}