/* 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(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

/* --- TARJETA AZUL #03045E SIMPLE --- */
.tour-card {
    background: var(--secondary); /* Cambiado de #03045E */
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

/* IMAGEN */
.tour-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.tour-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--secondary), transparent);
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

/* CONTENIDO */
.tour-content {
    padding: 1.8rem 2rem;
}

.tour-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}


/* 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;
    }
}