/* Estilos para la vista de información del sitio */

/* ----- Contenedor principal ----- */
.info-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ----- Breadcrumb ----- */
.breadcrumb-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  margin: 0 auto 1rem;
  font-size: 1.7rem;
  color: #6c757d;
  max-width: 1140px;
}

.breadcrumb-container a {
  color: #9F2241;
  text-decoration: none;
  transition: opacity 0.2s;
}

.breadcrumb-container a:hover {
  opacity: 0.8;
  text-decoration: none;
  color: #691C32;
}

.breadcrumb-container span {
  color: #6c757d;
}

/* ----- Títulos ----- */
.info-title {
  background-color: #9F2241;
  color: white;
  padding: 15px 20px;
  margin-bottom: 20px;
  font-size: 2.5rem;
  font-weight: normal;
  margin-left: auto;
  margin-right: auto;
  max-width: 1140px;
  text-align: center;
}

.info-subtitle {
  color: black;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: normal;
}

/* ----- Secciones ----- */
.info-section {
  margin-bottom: 2rem;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 1rem;
}

.info-section:last-child {
  border-bottom: none;
}

.section-title {
  color: #9F2241;
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

/* ----- Botón de compra ----- */
.adquirir-boletos {
  color: #6c757d;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.btn-comprar {
  display: inline-block;
  background-color: #9F2241;
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 3px;
  transition: background-color 0.3s;
}

.btn-comprar:hover {
  background-color: #691C32;
  color: white;
  text-decoration: none;
}

.btn-comprar i {
  margin-left: 5px;
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
  .info-container .row {
    display: flex;
    flex-direction: column;
  }
  
  .info-container .col-md-4 {
    order: 1;
    margin-bottom: 2rem;
  }
  
  .info-container .col-md-8 {
    order: 2;
  }
}

/* ----- Separador vertical para pantallas grandes ----- */
@media (min-width: 769px) {
  .info-container .col-md-4 {
    position: relative;
  }
  
  .info-container .col-md-4:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: #f0f0f0;
  }
}
.footer {
  background-color: #4F4F4F; /* tu gris original */
}

.footer .btn {
  border-width: 2px;
  transition: background-color .2s;
  white-space: nowrap;       /* evita que el texto se quiebre */
}

.footer .btn:hover {
  background-color: rgba(255,255,255,.1);
}

