/* ============================
   TOURS - Tema claro / luminoso
   ============================ */

.page-hero-light {
    background: linear-gradient(135deg, #0a1628 0%, #1a3a5c 40%, #2980b9 100%);
    padding: 6rem 0 3rem;
    text-align: center;
    color: #fff;
}
.page-hero-light h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
}
.page-hero-light p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.7;
}

.section-light {
    background: #f8f6f2;
    padding: 3rem 0 4rem;
    min-height: 60vh;
}

/* Filtros */
.tours-filters {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}
.filter-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.filter-group {
    flex: 1;
    min-width: 200px;
}
.filter-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.filter-select {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    background: #fafafa;
    color: #333;
    transition: border-color 0.3s;
    appearance: auto;
}
.filter-select:focus {
    outline: none;
    border-color: var(--tva-gold);
}

/* Grid de tours */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tour-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.tour-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.tour-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e8e4dc;
}
.tour-body {
    padding: 1.2rem;
}
.tour-body h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.tour-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
}
.tour-tag {
    font-size: 0.72rem;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    background: #e8f4f8;
    color: #2980b9;
    font-weight: 500;
}
.tour-tag i {
    margin-right: 0.2rem;
    font-size: 0.65rem;
}
.tour-desc {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}
.tour-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--tva-gold);
    margin-bottom: 0.8rem;
}

.tours-no-results {
    text-align: center;
    padding: 3rem;
    color: #999;
    font-size: 1.1rem;
}
.tours-load-more {
    text-align: center;
    margin-top: 2rem;
}

/* Botón dorado en tema claro */
.section-light .btn-gold {
    background: linear-gradient(135deg, var(--tva-gold), var(--tva-gold-dark));
    color: #fff;
}
.section-light .btn-gold:hover {
    background: linear-gradient(135deg, #d4b85e, #b8943a);
}

@media (max-width: 768px) {
    .filter-row {
        flex-direction: column;
    }
    .tours-grid {
        grid-template-columns: 1fr;
    }
    .page-hero-light {
        padding: 5rem 0 2rem;
    }
}