/* Estilos para la barra resumen del tour */
.tour-summary-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f3f4f3;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  min-height: 80px;
  gap: 0;  
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  z-index: 100;
  width: 90%;
}
.tour-summary-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-right: 1px solid #d1d1d1;
  background: none;
}
.tour-summary-bar__item:last-child {
  border-right: none;
  padding-right: 32px ;
}
.tour-summary-bar__item--video {
  background: #c7a24c;
  border-radius: 0 0 0 0;
  padding: 0 32px;
  border-right: 1px solid #d1d1d1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 92px;
}
.tour-summary-bar__video-btn {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #c7a24c;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.tour-summary-bar__video-btn i {
  color: #fff;
  font-size: 2rem;
}
.tour-summary-bar__item i {
  color: #c7a24c;
  font-size: 2rem;
  min-width: 32px;
  text-align: center;
}
.tour-summary-bar__item div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}
.tour-summary-bar__item strong {
  font-size: 1rem;
  color: #383838;
  font-weight: 500;
}
.tour-summary-bar__item span {
  font-size: 1rem;
  color: #383838;
}
.tour-summary-bar__item--download {
  padding-right: 0;
  border-right: none;
}
.tour-summary-bar__download-btn {
  background: #29443c;
  color: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.tour-summary-bar__download-btn:hover {
  background: #1d312a;
}
@media (max-width: 900px) {
  .tour-summary-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 0 8px;
    gap: 0;
  }
  .tour-summary-bar__item {
    border-right: none;
    border-bottom: 1px solid #d1d1d1;
    padding: 16px 0;
    justify-content: flex-start;
  }
  .tour-summary-bar__item:last-child {
    border-bottom: none;
  }
  .tour-summary-bar__item--video {
    padding: 16px 0;
    height: auto;
    border-bottom: 1px solid #d1d1d1;
  }
}

.tour-description-section{
  margin-top: 100px;
}
