@charset "utf-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz@8..144&display=swap");

/* 🎨 Paleta moderna - temática musical */
:root {
  --color-bg: #0b0b12;              /* fondo principal, oscuro elegante */
  --color-surface: #1a1a26;         /* fondo secundario (contenedores) */
  --color-accent: #7a5cff;          /* violeta neón */
  --color-highlight: #00ffc6;       /* cian vibrante */
  --color-text: #f5f5f5;            /* texto principal */
  --color-text-muted: #b5b5c3;      /* texto secundario */
  --color-border: #2c2c3a;          /* bordes suaves */
  --color-button: #7a5cff;          /* botón principal */
  --color-button-hover: #00ffc6;    /* hover del botón */
  --color-header: #11111a;          /* header/footer */
  --color-link: #00ffc6;            /* links */
  --color-table-odd: #1f1f2b;       /* filas impares */
  --color-table-even: #2a2a38;      /* filas pares */
}

/* Fuente y fondo general */
body {
  font-family: "Roboto Flex", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  margin: 0;
}

/* Contenedor general */
#contenedor {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Contenido principal */
main {
  padding: 20px;
  min-height: 250px;
}

/* Títulos */
h1,
h2,
h3,
h5,
h6 {
  color: var(--color-accent);
}

h2 {
  font-weight: 800;
  color: var(--color-highlight);
  text-transform: uppercase;
}

h4 {
  margin-top: 26px;
  font-weight: 600;
  color: var(--color-highlight);
}

/* NAV */
#navPrincipal {
  
  margin-top: 5px;
  margin-right: 10px;
  max-width: 700px;
  align-items: end;
  display: inline;
  
}

#navPrincipal li {
  list-style-type: none;
  padding: 10px;
  margin: 5px;
  float: left;
}

header img {
  margin: 20px;
  width: 100px;
  border: 1px solid var(--color-border);
}

#navPrincipal a {
  cursor: pointer;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 10px;
}

#navPrincipal a:hover {
  color: var(--color-highlight);
}

header {
  background-color: var(--color-header);
  clear: both;
  color: var(--color-text);
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
}

/* TABLAS */
table,
th,
td {
  border-collapse: collapse;
  border: none;
  padding: 8px 15px;
  background-color: var(--color-surface);
  color: var(--color-text);
  text-align: center;
}

thead {
  border-bottom: 1px solid var(--color-border);
  background-color: var(--color-header);
  color: var(--color-highlight);
  font-weight: normal;
}

table tr:nth-child(odd) td {
  background-color: var(--color-table-odd);
}

table tr:nth-child(even) td {
  background-color: var(--color-table-even);
}

/* Labels */
label {
  text-transform: uppercase;
  font-size: 13px;
  color: var(--color-text-muted);
}

/* Inputs */
input,
textarea,
select {
  margin: 0 10px 10px 0;
  display: block;
  min-width: 200px;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: 0.25rem;
  transition: all 0.2s ease-in-out;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--color-highlight);
  box-shadow: 0 0 6px var(--color-highlight);
}

/* Área de texto */
.textArea {
  min-height: 80px;
}

.registroDiv{
  width: 100%;
  display:flex;
  align-items: center;
  justify-content: space-around;
  padding-top: 150px;
  padding-bottom: 100px;
}

.registroDiv label{
  font-size: x-large;
}

#mensajeRegistro{
  font-size: large;
  text-align: center;
}

h2{
  text-align: center;
}

/* Botones */
input[type="button"],
button {
  background-color: var(--color-button);
  color: var(--color-text);
  border: 1px solid var(--color-accent);
  border-radius: 6px;
  min-width: 100px;
  height: 35px;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
}

input[type="button"]:hover {
  background-color: var(--color-button-hover);
  border: 1px solid var(--color-highlight);
  color: var(--color-bg);
}

input[type="button"]:disabled {
  background-color: #555;
}

/* Footer */
footer {
  background-color: var(--color-header);
  clear: both;
  padding: 20px;
  color: var(--color-text-muted);
  font-size: 12px;
}

footer a {
  cursor: pointer;
  color: var(--color-link);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

footer a:hover {
  color: var(--color-accent);
}

/* ========== CARRUSEL DE IMÁGENES ========== */

.carrusel-container {
  width: 100%;
  background-color: var(--color-header);
  padding: 0;
  margin: 0;
}

.carrusel {
  max-width: 100%;
  position: relative;
  margin: 0 auto;
  background-color: #000;
}

.carrusel-slides {
  position: relative;
  width: 100%;
  background: #000;
}

.slide {
  display: none;
  position: relative;
  width: 100%;
}

.slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--color-text);
  padding: 40px 30px 30px;
  text-align: center;
}

.slide-caption h3 {
  margin: 0 0 10px 0;
  font-size: 28px;
  color: var(--color-highlight);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-caption p {
  margin: 0;
  font-size: 16px;
  color: var(--color-text);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Controles del carrusel */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  padding: 0;
  margin-top: -25px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  font-weight: bold;
  font-size: 24px;
  border-radius: 3px;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  border: none;
}

.prev:hover,
.next:hover {
  background-color: var(--color-accent);
  color: #000;
}

.next {
  right: 10px;
}

.prev {
  left: 10px;
}

/* Efecto fade para transiciones */
.fade {
  animation: fade 1s ease-in-out;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* Indicadores (puntos) */
.dots-container {
  text-align: center;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.3);
}

.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 8px;
  background-color: #999;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: var(--color-highlight);
}

.dot:hover {
  background-color: var(--color-accent);
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .slide img {
    height: 250px;
  }

  .slide-caption {
    padding: 20px 15px 15px;
  }

  .slide-caption h3 {
    font-size: 20px;
  }

  .slide-caption p {
    font-size: 14px;
  }

  .prev,
  .next {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    font-size: 18px;
  }

  .next {
    right: 5px;
  }

  .prev {
    left: 5px;
  }
}

/* ========== FIN CARRUSEL ========== */
