@charset "utf-8";
/* CSS Document */

nav {
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

nav img {
  height: 45px;
  margin-right: 20px;
  vertical-align: middle;
}

nav a {
  font-family: 'Bell MT', serif;
  font-style: italic;
  color: #c59eff; /* morado bonito */
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  margin: 0 5px;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  transition: all 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #b084ff; /* línea morada */
  left: 0;
  bottom: 0;
  transition: 0.4s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: #b084ff; /* cambia a morado más oscuro */
}

h1 {
  text-align: center;
  margin-top: 100px;
  font-size: 2.5rem;
  color: #000;
}

/* Contenido principal */
.contenedor {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 120px 40px 40px;
}

.columna {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  width: 40%;
  border-radius: 10px;
}

p {
  margin: 0 0 1em;
  line-height: 1.5;
}

	
	
	
	
	
