@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* --- Utilitários de Texto e Fundo --- */
.gradient-text-agro {
    background: linear-gradient(to right, #10b981, #a3e635); /* Emerald to Lime */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.glass-panel-dark {
    background: rgba(20, 20, 20, 0.75);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* --- Parallax & Animações de "Campo" --- */

/* Efeito Ken Burns (Zoom Lento na imagem de fundo) */
@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}
.animate-bg-zoom {
    animation: slowZoom 20s infinite alternate linear;
}

/* Container Parallax */
.parallax-container {
    position: relative;
    overflow: hidden;
}

.parallax-layer {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    will-change: transform;
}

/* Elementos que flutuam sozinhos (Widgets) */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}
.floating-widget {
    animation: float 6s ease-in-out infinite;
}
.delay-float { animation-delay: 3s; }

/* Scroll Trigger Animations (Fade Up) */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); /* Easing suave */
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mockups de Relatórios */
.report-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.report-card:hover {
    transform: translateY(-5px);
}

/* Navegação */
nav { transition: all 0.4s ease; }
nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}
nav.scrolled .nav-text { color: #1c1917 !important; } /* Stone-900 */
nav.scrolled .nav-btn { background: #059669; color: white; }