body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* HEADER */
.header {
  background: linear-gradient(135deg, #8B1E1E, #5c0f0f);
  color: white;
  padding: 15px 0;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 100px;
}

/* TITULO */
.titulo {
  text-align: center;
}

.titulo h1 {
  margin: 0;
  font-size: 36px;
  color: var(--dorado-inst);
  letter-spacing: 2px;
}

.titulo span {
  font-size: 14px;
  color: #f5e6a1;
}

/* BOTÓN */
.btn-banca {
  background: var(--dorado-inst);
  color: #000;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.btn-banca:hover {
  background: #b9962e;
}

/* MENU */
.menu {
  background: var(--rojo-inst);
  display: flex;
  justify-content: center;
}

.menu a {
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  font-weight: bold;
}

.menu a:hover {
  background: var(--dorado-inst);
  color: #000;
}

