body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fafaf7;
    color: #333;
    overflow-x: hidden;
}

h1,
h2,
h3,
.serif {
    font-family: 'Playfair Display', serif;
}

.bg-cream {
    background-color: #f9f9f2;
}

.text-pousada-green {
    color: #1a4d2e;
}

.bg-pousada-green {
    background-color: #1a4d2e;
}

.bg-pousada-dark {
    background-color: #2b2b2b;
}

.hero-gradient {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

.reveal-left {
    transform: translateX(-100px) rotate(-5deg);
}

.reveal-right {
    transform: translateX(100px) rotate(5deg);
}

.reveal-active {
    opacity: 1;
    transform: translateX(0) rotate(0);
}

/* Hero Carousel */
.hero-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

.hero-carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 2px 2px 10px #666;
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    fill: white;
}

/* Custom Gallery Snap */
.gallery-snap {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.gallery-snap::-webkit-scrollbar {
    display: none;
}

.gallery-snap {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.gallery-item {
    flex: 0 0 100%;
    scroll-snap-align: center;
}