body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

/* Estilos del menú igual que en index */
header {
  background-color: #1e1e2f;
  padding: 1rem 2rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: background 0.3s;
  border-radius: 5px;
}

.nav-links a:hover {
  background-color: #3e3e5e;
}

h1 {
  text-align: center;
  margin: 2rem 0;
  font-size: 2.5rem;
  color: #1e1e2f;
}

.cuadros-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cuadro {
  background-size: cover;
  background-position: center;
  padding: 2rem;
  color: white;
  height: 350px;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
  transition: transform 0.3s, box-shadow 0.3s;
}

.cuadro:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.cuadro h2 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.cuadro p {
  font-size: 1rem;
  line-height: 1.5;
}


footer {
  text-align: center;
  padding: 1rem;
  background-color: #1e1e2f;
  color: white;
  margin-top: 2rem;
}
.btn-iniciar {
  background-color: #007BFF;      /* Azul */
  color: white;                   /* Texto blanco */
  border: none;                   /* Sin borde */
  padding: 12px 24px;             /* Espaciado interno */
  border-radius: 8px;             /* Bordes redondeados */
  font-size: 16px;                /* Tamaño de texto */
  cursor: pointer;                /* Cambia el cursor al pasar */
  transition: background-color 0.3s ease;
}

.btn-iniciar:hover {
  background-color: #0056b3;      /* Azul más oscuro al pasar el mouse */
}
