/* TOURS SECTION - FONDO VERDE MANTENIDO */
.tours {
    background: var(--green);
    position: relative;
    overflow: hidden;
}

.tours::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(45, 212, 191, 0.1) 0%, transparent 50%);
}

/* GRID */
.tours-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

/* --- TARJETA AZUL #03045E SIMPLE --- */
.tour-card {
    background: #03045E;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(184, 251, 60, 0.2);
}

.tour-card:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 14px 45px rgba(0,0,0,0.30);
    border-color: rgba(184, 251, 60, 0.4);
}

/* IMAGEN */
.tour-image {
    height: 220px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.12);
}

/* CONTENIDO */
.tour-content {
    padding: 1.8rem 2rem;
    position: relative;
}

/* Título */
.tour-content h3 {
    font-size: 1.45rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-weight: 700;
}

/* Precio */
.tour-price {
    color: #C8FF5E;
    font-size: 1.9rem;
    font-weight: 800;
    margin: 1rem 0 1.2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

/* Descripción */
.tour-description {
    font-size: 1rem;
    line-height: 1.65;
    color: #f0f0f0;
    opacity: 0.95;
}

/* Lista */
.tour-features {
    list-style: none;
    margin: 1.25rem 0;
}

.tour-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.55rem;
    font-size: 0.95rem;
    color: #f9f9f9;
    opacity: 0.95;
}

.tour-features li i {
    color: #C8FF5E;
    margin-right: 0.65rem;
    font-size: 1rem;
}

/* CTA */
.tour-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .tours-cards {
        grid-template-columns: 1fr;
    }
}