#section-cards-hotels {
    padding: 50px 0;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container-card-hotel {
    max-width: 1200px;
    height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.area-tittle-cards {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 15px;
}

.area-tittle-cards h2 {
    font-family: "DM Serif Text", serif;
    font-size: 3.5rem; 
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
}

.area-tittle-cards h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--berry-crush); 
    margin: 15px auto;
    border-radius: var(--border-pt);
}

.area-tittle-cards p {
    font-family: 'Montserrat', sans-serif; 
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-style: italic; 
}



.card-are-hotel-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    transition: all 0.3s ease;
}

.card-hotel-item {
    position: relative;
    border-radius: var(--border-pt);
    overflow: hidden; 
    height: 360px;
    width: 275px;
    margin-top: 20px;
    transition: transform 0.3s ease;
}

.card-hotel-item:hover {
    transform: translateY(-5px);
}

.card-hotel-item:hover img {
    -webkit-transform: scale(1.05) rotate(1.1deg);
    transform: scale(1.05) rotate(1.1deg);
}

.image-wrapper {
    width: 100%;
    height: 100%;
}

.card-hotel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.btn-arrow-hotel {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--berry-crush); 
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px 0px 30px 30px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s;
}

.card-hotel-item:hover .btn-arrow-hotel {
    background-color: #ffffff;
    color: var(--ocean-blue);
    transform: rotate(40deg);
}

.btn-arrow-hotel i {
    transform: rotate(320deg);
}

.information-hotel {
    position: absolute;
    bottom: 25px;
    left: 20px;
    color: white;
}

.hotel-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 8px;
    font-family: 'Arial', sans-serif;
}

.hotel-listing {
    background-color: var(--berry-crush);
    padding: 5px 15px;
    border-radius: var(--border-pt);
    font-size: 0.8rem;
    font-weight: 500;
    transition-delay: 0.1s;
    transition: all 0.3s ease;
}

.card-hotel-item:hover .hotel-listing {
    background-color: white;
    color: #16a085 !important;
    color: #16a085;
    transition: all 0.3s ease;
}

.hotel-listing a {
    color: #ffff;
    transition: all 0.3s ease;
}
.card-hotel-item:hover .hotel-listing a {
    color: var(--berry-crush);
}
@media (max-width: 1280px) {
   .container-card-hotel {
    max-width: 700px;
   }
    .card-are-hotel-carousel {
        width: 906px !important;
    }
}
@media (max-width: 1024px) {
    .card-are-hotel-carousel {
        width: 610px !important;
    }
}

@media (max-width: 768px) {
   .container-card-hotel {
    max-width: 300px;
   }
   .area-tittle-cards h2 {
        font-size: 2.2rem;
    }
    .area-tittle-cards p {
        font-size: 1rem;
    }
    .card-are-hotel-carousel {
        width: 610px !important;
    }
}
@media (max-width: 640px) {
    .card-are-hotel-carousel {
        width: 318px !important;
    }
}
