/* Reset de estilos básicos */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Tipografía */
body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}

/* Encabezado */
header {
  background-color: #003366; /* Azul oscuro */
  color: #fff;
  padding: 20px;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

/* Navegación */
nav {
  background-color: #00509e; /* Azul intermedio */
  text-align: center;
  padding: 10px 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  font-size: 1.1rem;
}

nav a:hover {
  background-color: #003366;
}

/* Secciones */
section {
  padding: 40px 20px;
  margin: 20px 0;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

section h2 {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 20px;
}

section p {
  font-size: 1.1rem;
  color: #555;
}

/* Pie de página */
footer {
  background-color: #003366;
  color: #fff;
  text-align: center;
  padding: 20px;
  position: fixed;
  width: 100%;
  bottom: 0;
}

/* Botones */
button {
  background-color: #007acc; /* Azul brillante */
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1.1rem;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #00509e;
}
