/* Hero Banner para la página del tour */
.tour-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: -10px; /* Ajuste si hay margen del header */
}

.tour-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(26,20,18,0.4) 0%, rgba(26,20,18,0.8) 100%);
}

.tour-hero-content {
    position: relative;
    z-index: 2;
}

.tour-hero-content h1 {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}

.tour-hero-content p {
    font-size: 1.2rem;
    font-weight: 500;
}

.tour-hero-content i {
    color: var(--secondary-color);
    margin: 0 5px 0 15px;
}

/* Layout a dos columnas */
.tour-detail-container {
    display: flex;
    gap: 40px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.tour-main-info {
    flex: 2;
}

.tour-sidebar {
    flex: 1;
    max-width: 400px;
}

.tour-main-info h2, .tour-main-info h3 {
    font-family: var(--heading-font);
    color: var(--dark-bg);
    margin-bottom: 20px;
    margin-top: 30px;
}

.tour-main-info h2 { font-size: 2.5rem; }
.tour-main-info p { font-size: 1.1rem; color: #444; margin-bottom: 20px; line-height: 1.8; }

.tour-gallery {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.tour-gallery img {
    width: 50%;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* Tarjeta Flotante (Sticky Booking Card) */
.booking-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-top: 6px solid var(--primary-color);
}

.sticky {
    position: sticky;
    top: 100px; /* Queda fija al bajar la pantalla */
}

.price-tag {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.price-tag .currency { font-size: 1.2rem; font-weight: bold; color: #666; }
.price-tag .amount { font-size: 3rem; font-family: var(--heading-font); color: var(--primary-color); font-weight: bold; }
.price-tag .per-person { font-size: 1rem; color: #888; }

.schedule-info p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 15px;
}

.schedule-info i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.btn-full-width {
    width: 100%;
    display: block;
    text-align: center;
    font-size: 1.2rem;
    padding: 15px;
    margin-top: 20px;
}

.secure-booking {
    text-align: center;
    font-size: 0.9rem !important;
    color: #888 !important;
    margin-top: 15px !important;
}

/* Responsive */
@media (max-width: 900px) {
    .tour-detail-container { flex-direction: column; }
    .tour-sidebar { max-width: 100%; }
    .sticky { position: static; }
    .tour-gallery { flex-direction: column; }
    .tour-gallery img { width: 100%; }
    .tour-hero-content h1 { font-size: 2.2rem; }
}