/* Contenedor similar a tu bookTransfer (90% width) */
.tour-container{
  width: 90%;
  margin: 0 auto;
}

/* ===== HERO ===== */
.tour-hero{
  display: flex;
  align-items: center;
  position: relative;
  height: 500px;
  padding: 80px 0 56px;
  display:flex;
  overflow:hidden;
  background: var(--dark-blue);
}

.tour-hero__bg{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position:center;
  transform: scale(1.02);
}

.tour-hero__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    90deg,
    rgba(27,42,74,.88) 0%,
    rgba(27,42,74,.40) 55%,
    rgba(27,42,74,.12) 100%
  );
}

.tour-hero__container{
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.tour-hero__title{
  margin: 0 0 10px;
  color: var(--white);
  font-size: 56px;
  font-weight: 800;
}

.tour-hero__desc{
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  line-height: 1.6;
  max-width: 640px;
}

/* ===== PAGE LAYOUT ===== */
.tour-page{
  background: var(--white);
  padding: 44px 0 56px;
}

.tour-layout{
  display:grid;
  grid-template-columns: 1fr 360px;
  gap: 34px;
  align-items:start;
}

/* Titles */
.tour-section-title{
  margin: 0 0 14px;
  font-size: 44px;
  font-weight: 600;
  color: var(--mid-blue);
}

/* Included list */
.tour-included{
  list-style:none;
  margin: 0;
  padding: 0;
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.tour-included li{
  position: relative;
  padding-left: 18px;
  color: #6b7280;
  font-size: 12.5px;
  line-height: 1.55;
}

.tour-included li::before{
  content: "›";
  position:absolute;
  left: 0;
  top: 0;
  color: var(--yellow);
  font-weight: 900;
}

.tour-divider{
  height: 1px;
  background: #e5e7eb;
  margin: 26px 0;
}



/* badges */
.tour-badges{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-content:start;
}

.tour-badge{
  text-align:center;
  padding: 12px 8px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
}

.tour-badge__fa{
  font-size: 22px;
  color: var(--mid-blue);
}

.tour-badge__label{
  display:block;
  margin-top: 6px;
  font-size: 11px;
  color: #6b7280;
  font-weight: 500;
}

/* ===== SIDEBAR CARD ===== */
.tour-card{
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
  background-color:var(--light-gray);
}

.tour-form .form-group {
  margin-bottom: 0px;
  height: auto;
}

.tour-card__head{
  background: var(--mid-blue);
  color: var(--white);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 14px;
  text-align:center;
}

.tour-card__body{
  padding: 14px;
}

.tour-form{
  display:flex;
  flex-direction: column;
  gap: 30px;
}

/* reutiliza .form-group/.form-icon/.text-input de bookingForm.css */
.tour-area{
  height: auto;
  align-items: flex-start;
}
.tour-area .form-icon{ height: auto; }
.tour-area .text-input{
  padding: 10px 0;
  resize: vertical;
  min-height: 84px;
}

/* pax pills */
.tour-pax{
  display:flex;
  gap: 8px;
}

.tour-pill{
  flex:1;
  height: 38px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  cursor: pointer;
  color: #6b7280;
  font-family: var(--font);
}

.tour-pill--active{
  border-color: var(--yellow);
  box-shadow: 0 0 0 2px rgba(245,197,24,.25) inset;
  color: var(--dark-blue);
}

.tour-pricing{
  background: #fff;
  border: 1px solid rgba(27, 42, 74, 0.12);
  border-radius: 10px;
  padding: 14px 14px 12px;
  box-shadow: 0 10px 22px rgba(27, 42, 74, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Each row */
.tour-line{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
}

/* Left side */
.tour-line__left{
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.tour-line__label{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--dark-blue);
  line-height: 1.1;
}

.tour-line__hint{
  font-size: 12.5px;
  color: rgba(27, 42, 74, 0.65);
  font-weight: 600;
}

/* Right side price */
.tour-line__right{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.tour-line__money{
  font-size: 14px;
  font-weight: 900;
  color: var(--mid-blue);
  white-space: nowrap;
}

/* Divider line style for "single" rows */
.tour-line--single{
  padding-top: 10px;
  border-top: 1px dashed rgba(27, 42, 74, 0.18);
}

/* TOTAL row (highlight) */
.tour-line--total{
  margin-top: 4px;
  padding-top: 12px;
  border-top: 2px solid rgba(245, 197, 24, 0.55);
}

.tour-line--total .tour-line__label{
  color: var(--mid-blue);
}

.tour-line--total .tour-line__money{
  font-size: 16px;
  color: var(--dark-blue);
}

/* ===== TOUR OPTION (Transfer Only / Full Tour toggle) ===== */
.tour-option-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tour-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  user-select: none;
  -webkit-user-select: none;
}

.tour-option--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.tour-option:has(input[type="radio"]:checked) {
  border-color: var(--dark-blue);
  box-shadow: 0 0 0 2px rgba(27, 42, 74, 0.12);
}

.tour-option input[type="radio"] {
  display: none;
}

/* Círculo radio personalizado */
.tour-option__custom {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  margin-top: 2px;
  transition: border-color 0.2s;
}

.tour-option__custom::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--dark-blue);
  opacity: 0;
  transition: opacity 0.15s;
}

.tour-option input[type="radio"]:checked ~ .tour-option__custom {
  border-color: var(--dark-blue);
}

.tour-option input[type="radio"]:checked ~ .tour-option__custom::after {
  opacity: 1;
}

/* Texto */
.tour-option__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.tour-option__title {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.2;
}

.tour-option__desc {
  font-family: var(--font);
  font-size: 11.5px;
  color: #6b7280;
  line-height: 1.55;
}

/* ===== TICKET LINE DISABLED (Transfer Only) ===== */
.tour-line--disabled {
  opacity: 0.45;
  transition: opacity 0.25s;
}

.tour-line--disabled .tour-line__label,
.tour-line--disabled .tour-line__money {
  text-decoration: line-through;
  text-decoration-color: rgba(27, 42, 74, 0.5);
}

.tour-line--disabled .tour-line__hint {
  text-decoration: line-through;
  text-decoration-color: rgba(27, 42, 74, 0.3);
}

/* payment */
.tour-card__payment {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tour-card__payment-title {
    font-family: var(--font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dark-blue);
    margin: 0;
}

.payment-radio-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.payment-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}

.payment-radio input[type="radio"] {
    display: none;
}

.payment-radio__custom {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.2s;
}

.payment-radio__custom::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--dark-blue);
    opacity: 0;
    transition: opacity 0.15s;
}

.payment-radio input[type="radio"]:checked ~ .payment-radio__custom {
    border-color: var(--dark-blue);
}

.payment-radio input[type="radio"]:checked ~ .payment-radio__custom::after {
    opacity: 1;
}

.payment-radio__label {
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-blue);
}

/* CTA */
.tour-cta{
  height: 44px;
  border: none;
  background: var(--yellow);
  color: var(--dark-blue);
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px){
  .tour-layout{
    grid-template-columns: 1fr;
  }
  .tour-sidebar {
    margin-bottom: 34px;
  }
  .tour-content {
    text-align: justify;
  }
  .tour-badges{
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 520px){
  .tour-hero__title{ font-size: 40px; }
  .tour-badges{ grid-template-columns: repeat(2, 1fr); }
}