        .page-header {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/hero-bg-acom.webp');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 150px 0;
            margin-top: 0;
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .accommodation-page {
            padding: 60px 0;
        }
        
        .accommodation-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        /* Estilos responsivos para a grade de acomodações */
        @media (max-width: 1024px) {
            .accommodation-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .accommodation-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .accommodation-item {
            margin-bottom: 30px;
            background-color: #f9f9f9;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease;
        }
        
        @media (max-width: 768px) {
            .accommodation-content {
                padding: 15px;
            }
            
            .accommodation-features {
                flex-wrap: wrap;
            }
            
            .feature {
                margin-bottom: 8px;
            }
            
            .page-header {
                padding: 60px 0;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .accommodation-page {
                padding: 40px 0;
            }
        }
        
        @media (max-width: 480px) {
            .accommodation-content {
                padding: 12px;
            }
            
            .accommodation-title h3 {
                font-size: 1.2rem;
            }
            
            .feature {
                font-size: 0.9rem;
                padding: 4px 10px;
            }
            
            .accommodation-btn {
                padding: 8px 15px;
                font-size: 0.9rem;
            }
            
            .page-header {
                padding: 40px 0;
            }
            
            .page-header h1 {
                font-size: 1.8rem;
            }
        }
        
        .accommodation-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .accommodation-title {
            margin-bottom: 5px;
            font-size: 1.4rem;
        }
        
        .accommodation-subtitle {
            color: #666;
            margin-bottom: 15px;
            font-style: italic;
            font-size: 0.9rem;
        }
        
        .accommodation-features {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 15px;
        }
        
        .feature {
            background-color: #e9f5ee;
            color: #4a7c59;
            padding: 4px 10px;
            border-radius: 20px;
            margin-right: 8px;
            margin-bottom: 8px;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
        }
        
        .accommodation-item p {
            font-size: 0.9rem;
            margin-bottom: 15px;
            flex-grow: 1;
        }
        
        .view-details {
            cursor: pointer;
            color: #4a7c59;
            text-decoration: underline;
            font-weight: 500;
            transition: color 0.2s ease;
        }
        
        .view-details:hover {
            color: #2c4a35;
        }
        
        .accommodation-item .btn {
            align-self: flex-start;
            margin-top: auto;
        }
        
        /* Modal styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.7);
            pointer-events: auto; /* Garante que os eventos de mouse sejam capturados pelo modal */
        }
        
        .modal-content {
            background-color: #fff;
            padding: 0;
            width: 100%;
            max-width: 1000px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
            border-radius: 20px;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            max-height: 90vh;
            overflow-y: auto;
            z-index: 1001; /* Garante que o conteúdo do modal fique acima do fundo */
            isolation: isolate; /* Isola o contexto de empilhamento */
        }
        
        /* Estilos responsivos para o modal */
        @media (max-width: 768px) {
            .modal-content {
                width: 95%;
                margin: 5% auto;
            }
            
            .modal-body {
                flex-direction: column;
                padding: 15px;
            }
            
            .modal-left, .modal-right {
                width: 100%;
                min-width: 100%;
            }
            
            .modal-gallery {
                height: 250px;
            }
            
            .modal-features {
                flex-wrap: wrap;
            }
            
            .modal-feature {
                margin-right: 10px;
                margin-bottom: 10px;
                font-size: 0.9rem;
            }
        }
        
        @keyframes modalopen {
            from {opacity: 0; transform: translateY(-60px);}
            to {opacity: 1; transform: translateY(0);}
        }
        
        .modal-header {
            padding: 20px 30px;
            background-color: #4a7c59;
            color: white;
            display: none; /* Hide the original header */
        }
        
        .modal-header h2 {
            margin: 0;
            font-size: 1.8rem;
        }
        
        .modal-body {
            padding: 30px;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        @media (max-width: 768px) {
            .modal-body {
                padding: 20px;
                gap: 20px;
            }
            
            .modal-title h2 {
                font-size: 1.8rem;
            }
            
            .modal-header {
                padding: 15px 20px;
            }
            
            .close {
                font-size: 28px;
                right: 15px;
            }
        }
        
        .modal-left {
            flex: 1;
            min-width: 300px;
        }
        
        .modal-title {
            color: #4a7c59;
            margin-bottom: 20px;
        }
        
        .modal-title h2 {
            margin: 0;
            font-size: 2.2rem;
            font-weight: 600;
            color: #4a7c59;
        }
        
        .modal-right {
            flex: 1;
            min-width: 300px;
        }
        
        .modal-description-container {
            width: 100%;
            margin-top: 30px;
        }
        
        .modal-description-container h3 {
            margin-top: 0;
            margin-bottom: 15px;
            font-size: 1.3rem;
            color: #4a7c59;
            font-weight: 600;
        }
        
        .modal-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
        }
        
        .modal-features-title h3 {
            margin-top: 0;
            margin-bottom: 15px;
            font-size: 1.3rem;
            color: #4a7c59;
            font-weight: 600;
        }
        
        .modal-size-container {
            margin-bottom: 30px;
        }
        
        .modal-size-container h3 {
            margin-top: 0;
            margin-bottom: 15px;
            font-size: 1.3rem;
            color: #4a7c59;
            font-weight: 600;
        }
        
        .modal-size {
            padding: 20px;
            background-color: #f9f9f9;
            border-radius: 5px;
            color: #555;
        }
        
        .modal-description {
            padding: 20px;
            background-color: #f9f9f9;
            border-radius: 5px;
            color: #555;
            line-height: 1.6;
        }
        
        .close {
            position: absolute;
            right: 20px;
            top: 30px;
            color: var(--primary-color);
            font-size: 23px;
            font-weight: bold;
            cursor: pointer;
            z-index: 10;
            width: 40px;
            height: 40px;
            display: flex;   
            justify-content: center;
            background-color: #eee;
            border-radius: 50%;
            transition: all 0.2s ease;
        }
        
        .close:hover {
            color: #666;
            background-color: #ddd;
        }
        
        .modalSwiper {
            height: 300px;
            width: 100%;
            background-color: #f5f5f5;
            border-radius: 5px;
            overflow: hidden;
            
        }
        
        .feature {
            display: inline-flex;
            align-items: center;
            margin-right: 10px;
            margin-bottom: 15px;
            padding: 8px 15px;
            background-color: #f5f5f5;
            border-radius: 5px;
            font-size: 0.9rem;
            transition: background-color 0.2s ease;
            min-width: 120px;
        }
        
        .feature:hover {
            background-color: #e8e8e8;
        }
        
        .feature i {
            margin-right: 10px;
            color: #4a7c59;
            font-size: 1.1rem;
        }
        
        .image-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f0f0f0;
            color: #666;
            font-size: 1.2rem;
            text-align: center;
            padding: 20px;
        }
        
        .image-text {
            font-size: 1.1rem;
            color: #555;
            background-color: rgba(255, 255, 255, 0.7);
            padding: 5px 15px;
            border-radius: 4px;
        }
        
        .modal-cta {
            text-align: center;
            margin-top: 30px;
        }
        
        .btn-reserve {
            background-color: var(--accent-color); /* Cor amarela */
            color: white;
            padding: 15px 30px;
            font-size: 1rem;
            font-weight: bold;
            border-radius: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            display: inline-block;
            width: 100%;
            text-align: center;
            position: relative; /* Importante para isolar o efeito hover */
            z-index: 1; /* Garante que o botão fique acima do background */
        }
        
        .btn-reserve:hover {
            background-color: #e09416; /* Tom mais escuro de amarelo no hover */
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            transform: translateY(-2px); /* Efeito sutil de elevação */
        }
        
        .accommodation-item {
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        /* Efeito hover mais forte para sobrepor qualquer conflito com AOS */
        .accommodation-item:hover {
            transform: translateY(-5px) !important;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
            z-index: 10 !important;
        }
        
        /* Garantir que a animação de hover funcione mesmo com AOS */
        [data-aos] {
            pointer-events: auto !important;
            transform-style: preserve-3d;
            backface-visibility: hidden;
        }
        
        [data-aos].aos-animate {
            pointer-events: auto !important;
        }
        
        /* Garantir que o efeito hover não seja bloqueado pela animação AOS */
        .accommodation-item[data-aos] {
            transition: transform 0.3s, box-shadow 0.3s, opacity 0.6s !important;
        }
        
        .accommodation-item[data-aos].aos-animate:hover {
            transform: translateY(-5px) !important;
        }
        
        .feature i {
            margin-right: 5px;
        }
        
        /* Swiper slider styles */
        .swiper {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
        }
        
        .swiper-slide {
            text-align: center;
            background: #f4f4f4;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            aspect-ratio: 16/9;
        }
        
        /* Estilos específicos para o slideshow do modal */
        .modalSwiper {
            width: 100%;
            aspect-ratio: 16/9;
            margin-bottom: 20px;
        }
        
        .modalSwiper .swiper-slide {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f4f4f4;
        }
        
        .modalSwiper .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            aspect-ratio: 16/9;
        }
        
        .swiper-button-next, .swiper-button-prev {
            color: #fff;
            background: rgba(0, 0, 0, 0.3);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 18px;
        }
        
        .swiper-pagination-bullet-active {
            background: #4a7c59;
        }
