/* Custom Styles - Construtora Londrina MVC */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Roboto+Slab:wght@400;500;600;700;800&display=swap');

:root {
    --background: #F0F0E4;
    --foreground: #4F4F4F;
    --primary: #004A7F;
    --accent: #C49B38;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: 'Open Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Slab', serif;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

::-webkit-scrollbar-track {
    background: #F0F0E4;
}

::-webkit-scrollbar-thumb {
    background: #004A7F;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #003a66;
}

/* Selection color */
::selection {
    background: rgba(0, 74, 127, 0.2);
    color: #004A7F;
}
