body {
    background-color: #FCFCFA;
    color: #2D3748;
    overflow-x: hidden;
}

/* Formas orgânicas e animações sutis */
.blob-shape {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.image-mask-1 {
    border-radius: 2rem 10rem 2rem 2rem;
}

.image-mask-2 {
    border-radius: 10rem 2rem 10rem 2rem;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.whatsapp-btn {
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

/* Scroll Reveal — animação de entrada */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar scroll effect */
nav {
    transition: all 0.4s ease;
}

nav.scrolled {
    box-shadow: 0 4px 30px rgba(26, 54, 34, 0.08);
    backdrop-filter: blur(20px);
}

nav.scrolled .h-24 {
    height: 4rem;
    transition: height 0.4s ease;
}

/* Mobile menu animação suave */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

#mobile-menu.menu-open {
    max-height: 300px;
    opacity: 1;
}

/* FAQ accordion */
.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding-top: 0;
    padding-bottom: 0;
}

.faq-item.active .faq-content {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

/* Link de seção ativo na navbar */
nav a.nav-active {
    color: #1A3622;
    position: relative;
}

nav a.nav-active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #7A9A77;
    border-radius: 1px;
}
