/* Custom styles for Agro Negócio Online */

:root {
    --primary: #F7C35F;
    --primary-hover: #E5B045;
    --secondary: #1E4620;
    --accent: #4CAF50;
    --background-light: #FDFDFB;
    --background-beige: #F9F7F2;
    --text-main: #1A2E1A;
    --text-muted: #5A6C57;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-light);
    color: var(--text-main);
    font-family: 'Manrope', sans-serif;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--background-beige);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Selection color */
::selection {
    background-color: var(--primary);
    color: var(--secondary);
}

/* Animations */
@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-bounce-slow {
    animation: bounce-slow 3s infinite;
}
