/* =========================
   TOURS MODERNO LIMPIO
========================= */

.tours-modern {
    padding: 60px 0;
}

/* TITULO */
.tours-modern h1 {
    font-weight: 800;
    font-size: 34px;
    color: #ffffff;
}

/* CARD */
.tour-card {
    background: #ffffff; /* 🔥 clave: fondo sólido */
    border-radius: 16px;
    overflow: hidden;

    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transition: 0.3s ease;

    height: 100%;
}

/* HOVER */
.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

/* BODY */
.tour-body {
    padding: 18px;
}

/* TITULO */
.tour-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

/* DESCRIPCION */
.tour-card .desc {
    font-size: 14px;
    color: #475569;
    margin-bottom: 12px;
}

/* INFO */
.tour-info {
    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 14px;
    color: #334155;

    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-bottom: 12px;
}

/* PRECIO */
.tour-info .price {
    font-weight: 800;
    color: #16a34a;
}

/* BOTON */
.tour-btn {
    display: block;
    width: 100%;
    text-align: center;

    padding: 10px;
    border-radius: 10px;

    background: #16a34a;
    color: #fff;
    font-weight: 600;

    text-decoration: none;
    transition: 0.3s;
}

.tour-btn:hover {
    background: #15803d;
}

/* MOBILE */
@media (max-width: 768px) {
    .tours-modern h1 {
        font-size: 26px;
    }
}