body {
    cursor: url('imgs/puntero.png'), auto;
}

a:hover {
    cursor: url('imgs/puntero-hover.png'), pointer;
}

.page{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #0f1a1c;
    background-size: cover;
    background-position: center;
}

h1, span, p, small{
    color: white;
}

.tour-detail {
    padding-bottom: 80px;
}

#tourCarousel {
    max-width: 1100px;
    margin: 40px auto 0;
    border-radius: 24px;
    overflow: hidden;
}

#tourCarousel img {
    height: 420px;
    object-fit: cover;
}

.tour-info {
    max-width: 1000px;
    margin-top: 40px;
}

.tour-info h1 {
    font-weight: 700;
    margin-bottom: 16px;
}

.tour-intro {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.tour-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.tour-meta span {
    font-weight: 500;
}

.tour-description p {
    line-height: 1.7;
}

.tour-advertencias {
    margin-top: 50px;
}
.tour-advertencias small {
    font-size: 14px;
}

.fecha-card {
    border: 1px solid #eaeaea;
    border-radius: 12px;
    transition: 0.2s ease;
    cursor: pointer;
}

.fecha-card:hover {
    border-color: #0d6efd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-check-input:checked + .form-check-label {
    color: #0d6efd;
    font-weight: 600;
}

.calendario-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    text-align: center;
}

.calendario-grid .dia-semana {
    font-weight: 600;
}

.calendario-grid button {
    padding: 8px 0;
    border-radius: 8px;
    transition: all .2s ease;
}

.calendario-grid button:hover:not(:disabled) {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    #tourCarousel {
        max-width: 100%;
        margin-top: 0;
        border-radius: 0;
    }

    #tourCarousel img {
        height: 45vh;
    }

    .tour-info {
    padding: 0 25px;
}
}