/* Colores base */
body {
  background-color: #000;  /* negro */
  color: #fff;             /* texto blanco */
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
}

/* Encabezados centrados */
h1, h2, h3 {
  text-align: center;
  margin-bottom: 1rem;
}

/* Texto justificado */
p {
  text-align: justify;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
}

/* Navegación */
nav {
  text-align: center;
  margin-bottom: 2rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  margin: 0 1rem;
  transition: color 0.3s;
}

nav a:hover {
  color: #e10600; /* rojo */
}

/* Centrar contenido de sección contacto */
.contacto {
  text-align: center;
}

/* Botón rojo */
.boton {
  display: inline-block;
  background-color: #e10600; /* rojo */
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
  transition: background-color 0.3s;
  margin-top: 1rem;
}

.boton:hover {
  background-color: #b10400;
}

/* Pie de página */
footer {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #ccc;
}
