/* Custom Styles extras não cobertos pelo Tailwind */

/* Fontes */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Esconder scrollbar mantendo funcionalidade */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Transições suaves */
a, button {
    transition: all 0.2s ease-in-out;
}

/* Background image para home hero - será definido inline ou via classes */
.hero-overlay {
    background: linear-gradient(to right, rgba(45, 52, 54, 0.8), rgba(45, 52, 54, 0.4));
}

/* Estilização extra para GLightbox */
.glightbox-clean .gslide-title {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    color: #2A6B5E !important;
}

/* Animações simples para scroll reveal (opcional, pode ser feito via JS/Intersection Observer) */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Efeito de Profundidade - Folhas Caindo */
.leaf {
    position: absolute;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23C9A96E"><path d="M21 3C21 3 15.5 1.5 10 7C4.5 12.5 3 21 3 21C3 21 8.5 22.5 14 17C19.5 11.5 21 3 21 3Z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.4;
    animation: floatingLeaf linear infinite;
    pointer-events: none;
    z-index: 5;
    filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.3));
}
@keyframes floatingLeaf {
    0% { transform: translateY(-50px) translateX(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(100vh) translateX(150px) rotate(360deg); opacity: 0; }
}
.leaf-1 { left: 10%; animation-duration: 12s; animation-delay: 0s; width: 40px; height: 40px; }
.leaf-2 { left: 25%; animation-duration: 16s; animation-delay: 2s; width: 25px; height: 25px; filter: blur(2px) opacity(0.3); }
.leaf-3 { left: 45%; animation-duration: 11s; animation-delay: 4s; width: 50px; height: 50px; }
.leaf-4 { left: 65%; animation-duration: 18s; animation-delay: 1s; width: 35px; height: 35px; filter: blur(1px) opacity(0.4); }
.leaf-5 { left: 80%; animation-duration: 14s; animation-delay: 3s; width: 30px; height: 30px; }
.leaf-6 { left: 95%; animation-duration: 15s; animation-delay: 5s; width: 45px; height: 45px; filter: blur(3px) opacity(0.2); }
.leaf-7 { left: 55%; animation-duration: 13s; animation-delay: 6s; width: 20px; height: 20px; filter: blur(1.5px); }
.leaf-8 { left: 5%; animation-duration: 19s; animation-delay: 8s; width: 60px; height: 60px; filter: drop-shadow(0px 8px 10px rgba(0,0,0,0.4)); }


/* Glassmorphism */
.glass-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.hover-glow {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hover-glow:hover {
    box-shadow: 0 15px 30px rgba(42, 107, 94, 0.15);
    transform: translateY(-8px);
}

@keyframes pulse-soft {
    0% { box-shadow: 0 0 0 0 rgba(42, 107, 94, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(42, 107, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(42, 107, 94, 0); }
}
.btn-pulse {
    animation: pulse-soft 2s infinite;
}

.text-reveal {
    overflow: hidden;
}
.text-reveal span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: reveal 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes reveal {
    to { opacity: 1; transform: translateY(0); }
}

.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.image-hover-zoom {
    overflow: hidden;
}
.image-hover-zoom img {
    transition: transform 0.8s ease;
}
.image-hover-zoom:hover img {
    transform: scale(1.1);
}

