/* Estilos complementares ao Tailwind */

/* Fonte Inter */
body {
    font-family: 'Inter', sans-serif;
}

/* Header Animations */
.header-visible {
    transform: translateY(0);
}

.header-hidden {
    transform: translateY(-100%);
}

/* Modal Animations */
#privacy-modal.show {
    display: flex;
    opacity: 1;
}

/* Customização Scrollbar (opcional) */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #dc2626; 
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #b91c1c;
}