/* Estilos para la página de reservas */


/* Secciones */
.section-padding {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.bg-light {
    background-color: #f9f9f9;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    color:#000;
    font-size: 25px;
    margin-bottom: 15px;
    position: relative;
    font-family: "museosans5", sans-serif;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #000;
}

.section-title p {
    font-family: "museosans", sans-serif;
    font-size: 16px;
    color: #000;
}

/* Información del tour */
.tour-details {
    padding-left: 20px;
}

.tour-details h2 {
    font-family: "museosans5", sans-serif;
    color: #000;
    font-size: 25px;
    margin-bottom: 20px;
    text-align: center;
   
}

.tour-details .lead {
    font-size: 16px;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 2px;
    font-family: "museosans", sans-serif;
    color: #000;
}

.tour-features {
    margin-bottom: 30px;
}

.tour-features h3 {
    font-family: "museosans", sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.tour-features ul {
    padding-left: 0;
    list-style: none;
}

.tour-features ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.tour-features ul li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #28a745;
}

.tour-info-box {
    background-color: #f5f5f5;
    border-radius: 5px;
    padding: 20px;
    margin-top: 30px;
}

.info-item {
    text-align: center;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

.info-item h4 {
    font-family: "museosans", sans-serif;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-item p {
    font-size: 14px;
    margin-bottom: 0;
    color: #666;
}

/* Formulario de reserva */
.reservation-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.reservation-form label {
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.reservation-form .required {
    color: #dc3545;
}

.reservation-form .form-control {
    height: 45px;
    border-radius: 3px;
}

.reservation-form textarea.form-control {
    height: auto;
}

.reservation-form .btn {
    padding: 12px 30px;
    font-size: 16px;
    margin-top: 20px;
}

.confirmation-message {
    margin-top: 30px;
    text-align: center;
}

.confirmation-message .alert {
    padding: 30px;
}

.confirmation-message i {
    font-size: 48px;
    color: #28a745;
    margin-bottom: 15px;
    display: block;
}

.confirmation-message h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.confirmation-message p {
    font-size: 16px;
    margin-bottom: 10px;
}
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px; /* Ajusta el espacio entre el checkbox y el texto */
}

/* FAQ */
.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* Responsive */
@media (max-width: 767px) {
    .banner-small {
        padding: 60px 0;
    }
    
    .banner-small h1 {
        font-size: 32px;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .tour-details {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .reservation-form {
        padding: 20px;
    }
    .checkbox-label {
        display: flex;
        align-items: center;
        gap: 8px; /* Ajusta el espacio entre el checkbox y el texto */
    }
}