/* Fondo del encabezado */
.encabezado {
  background-color: #ffffff;
  border-bottom: 3px solid #000;
}

/* Botón naranja */
.btn-contar-historia {
  background-color: #f36e23;
  color: white;
  border-radius: 20px;
  font-size: 12px;
  padding: 6px 14px;
}

/* Menú desplegable oscuro */
.menu-desplegable {
  background-color: #1a1a1a;
  color: white;
}

.menu-desplegable .dropdown-item {
  color: white;
}

.menu-desplegable .dropdown-item:hover {
  background-color: #444;
}

/* Logos del header */
.logos {
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: end;
}

.logos img {
  max-height: 40px;
  object-fit: contain;
}

/*------------------*/
/* Guía de categorías de discos */
.guia-categorias {
  background-color: #fff;
  padding: 2rem 1rem;
  text-align: center;
}

.guia-categorias h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
  color: #333;
}

.guia-categorias .fila-categorias {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.guia-categorias .categoria-guia {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px;
}

.guia-categorias .categoria-circulo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 0.5rem;
  border: 2px solid #fff;
  box-shadow: 0 0 4px rgba(0,0,0,0.2);
}

.guia-categorias span {
  font-size: 0.9rem;
  color: #444;
  text-align: center;
}
/*------------------*/


/* Línea de tiempo */

.linea-tiempo-musical {
  background-image: url('/img_Historia/Cervecera.jpg'); /* ✔️ sin /static */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 3rem 1rem;
  font-family: Arial, sans-serif;
  justify-content: center;
}

.linea-tiempo-musical::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(43, 43, 43, 0.4); /* ✅ Menos opacidad */
  z-index: 0;
}

.linea-tiempo-musical > * {
  position: relative;
  z-index: 1;
}

.contenedor-general {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Estilo de los discos en curva */
.selector-anios {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 160px;
  position: relative;
}

.discos-anios {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}

.disco-anio {
  width: 80px;
  height: 80px;
  background-color: #bb3f00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease;
}

.disco-anio:hover {
  transform: scale(1.05);
}

.decada {
  cursor: pointer;
  font-size: 24px;
  color: #ffffff;
  background-color: transparent;
  border: none;
}

/* Reproductor */
.reproductor-musical {
  background-color: #e98d42;
  border-radius: 12px;
  padding: 2rem;
  max-width: 700px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.imagen-reproductor {
  max-width: 100%;
  max-height: 280px;
  border-radius: 10px;
  margin-bottom: 1rem;
  object-fit: cover;
}

.fuente-imagen,
.fuente-descripcion {
  font-size: 0.85rem;
  color: #333;
  margin: 0.5rem 0;
}

#titulo-evento {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
}

#descripcion-evento {
  color: #ffffff;
   font-weight: bold;
  font-size: 1rem;
  margin-bottom: 1rem;
  
}

.categorias {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.categoria-disco {
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  cursor: pointer;
  transition: transform 0.2s ease;
  color: rgb(255, 255, 255);
}

.categoria-disco .ronda {
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  margin: 6px 0;
}

.categoria-disco:hover {
  transform: scale(1.1);
}





/*------------------*/
/*------------------*/
.fondo-verde {
  background-color: #009688; /* Verde turquesa */
}

.imagen-tiempo {
  max-height: 300px;
  border-radius: 15px;
}

  /*-------*/
/*-------*/
/* Enlaces institucionales */
.enlaces-informacion {
  background-color: #eeeeee;
  color: #333;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.enlaces-informacion img {
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
  background-color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}
/*-------*/
/*-------*/

/* Footer Javeriana */
.footer-javeriana {
  margin-top: 0;
  background-color: #000;
}

.footer-javeriana img {
  display: block;
  width: 100%;
  height: auto;
}