.tour-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 77, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 77, 0, 0.15);
}

.tour-card .tour-image {
    height: 250px;
    overflow: hidden;
}

.tour-card .tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.05);
}

.tour-info {
    padding: 1.5rem;
    text-align: center;
}

.tour-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.tour-duration {
    color: #2e7d32;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tour-cuatri {
    font-size: 1.0rem;
    font-weight: bold;
    color: #2e7d32;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.tour-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #1b5e20;
    margin-bottom: 0rem;
}

.tour-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-reservar {
    background-color: #2e7d32;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.btn-reservar:hover {
    background-color: #1b5e20;
}

.btn-info {
    background-color: transparent;
    color: #2e7d32;
    border: 2px solid #2e7d32;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-info:hover {
    background-color: #2e7d32;
    color: white;
}