/* styles.css */

body {
  background-color: #ffffff;
  color: #000000;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.wrapper {
  width: 100%;
  max-width: 960px;
  margin: auto;
  box-sizing: border-box;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero {
  width: 100%;
  height: 300px;
  background: linear-gradient(to bottom, #1a1a1a, #333);
  background-image: url('https://images.unsplash.com/photo-1511376777868-611b54f68947');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 8px;
  color: white;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 0.3em;
}

.hero p {
  font-size: 1.3em;
  max-width: 600px;
  margin: 0 auto;
}

.menu-section {
  margin-top: 50px;
  width: 100%;
}

.menu-section h2 {
  font-size: 2em;
  margin-bottom: 1em;
  border-bottom: 2px solid #000;
  display: inline-block;
  padding-bottom: 5px;
}

ul.menu {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

ul.menu li {
  margin: 0;
  width: 100%;
  max-width: 400px;
}

ul.menu a {
  text-decoration: none;
  font-size: 1.1em;
  padding: 15px 30px;
  display: block;
  border: 2px solid #000;
  color: #000;
  transition: all 0.3s ease;
  font-weight: bold;
  border-radius: 8px;
  background-color: #f8f8f8;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

ul.menu a:hover {
  background-color: #000;
  color: #fff;
}

footer {
  margin-top: 60px;
  padding: 20px;
  text-align: center;
  font-size: 0.9em;
  color: #777;
  border-top: 1px solid #ccc;
  width: 100%;
}

/* ESTILOS MUSIC KNOBS AZUL CORPORATIVO */

.theme-knobs {
  font-family: 'Arial', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

.theme-knobs header {
  background-color: #0a5c91;
  color: white;
  padding: 20px;
  text-align: center;
}

.theme-knobs header img {
  max-width: 150px;
  margin-bottom: 10px;
}

.theme-knobs header h1 {
  margin: 10px 0 5px;
  font-size: 2em;
}

.theme-knobs header p {
  font-size: 1.1em;
}

.theme-knobs section {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

.theme-knobs h2 {
  color: #0a5c91;
  text-align: center;
}

.theme-knobs p {
  line-height: 1.6;
  font-size: 1.1em;
}

.theme-knobs #search {
  width: 100%;
  max-width: 400px;
  padding: 10px;
  font-size: 1em;
  margin: 20px auto;
  display: block;
}

.theme-knobs #result p {
  background: #eef;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.theme-knobs .instr {
  font-weight: bold;
  color: #064579;
}

.theme-knobs footer {
  background-color: #0a5c91;
  color: white;
  text-align: center;
  padding: 20px;
}
