#card-view-experiences {
    height: max-content;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0px;
}

#card-view-experiences .container-view-experiences {
    max-width: 1240px;
    height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.card-tour {
    height: 460px;
    width: 295px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    margin: 20px 0px;
    box-shadow: 8px 8px 18px rgba(255, 255, 255, 0.247);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Poppins', sans-serif; /* O la que uses */
}

.card-tour:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.12);
}

.card-header-view {
    position: relative;
    height: 200px;
}

.card-header-view img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card-body {
    padding: 20px;
}

.card-body h4 {
    font-size: 1.2rem;
    font-weight: 600;
    height: 52px;
    color: #333;
    margin-bottom: 0px;
}

.tittle-information {
    width: 100%;
    height: max-content;
    justify-content: center;
    align-items: start;
}

.tittle-information p {
    font-family: 'Handlee', cursive; 
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.tittle-information h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
}

.tour-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.tour-info {
    font-size: 0.85rem;
    color: #000000;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.tour-description {
    font-size: 0.9rem;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 20px;
}

.card-footer-view {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    margin-bottom: 15px;
}

.rating {
    color: #ff5a5f;
    font-weight: 600;
    font-size: 0.9rem;
}

.rating span {
    color: #999;
    font-weight: 400;
}

.price {
    font-size: 0.85rem;
    color: #444;
}

.price span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.btn-detalles {
    display: block;
    text-align: center;
    background: #72b043; /* Tu verde */
    color: white;
    text-decoration: none;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-detalles:hover {
    background: #5a8d34;
}

.promocion-badge-view {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff5a5f;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

@media (max-width: 1536px) {
  
   
}

@media (max-width: 1280px) {
   #card-view-experiences .container-view-experiences {
    width: 680px;
   }
 
   
}

@media (max-width: 1024px) {
    
    #card-view-experiences .container-view-experiences {
        width: 680px;
    }
}

@media (max-width: 780px) {
    #card-view-experiences .container-view-experiences {
        width: 350px;
    }
  
}


@media (max-width: 640px) {
  
    #card-view-experiences .container-view-experiences {
        width: 300px;
    }
}