/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f3f4f6;
    padding-bottom: 70px; /* Espaço para o navbar inferior no mobile */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Ocultar barra de rolagem mas manter funcionamento se quiser card scrollável horizontal */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Toast Message */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    min-width: 250px;
    padding: 12px 20px;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transform: translateX(120%);
    transition: transform 0.3s ease-out;
}
.toast.show {
    transform: translateX(0);
}
.toast.success { background-color: #10b981; }
.toast.error { background-color: #ef4444; }
.toast.info { background-color: #3b82f6; }

/* Micro-animações */
.btn-animate:active {
    transform: scale(0.95);
    transition: transform 0.1s;
}

/* Bottom Nav ativo */
.nav-item.active {
    color: #2563eb;
}
.nav-item.active svg {
    stroke: #2563eb;
    fill: #dbeafe;
}

/* Desktop Fix */
@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }
    #mobile-nav {
        display: none; /* Em telas maiores, podemos ocultar ou transformar numa sidebar */
    }
    #main-content {
        margin-left: 250px; /* Espaço da sidebar no desktop */
        width: calc(100% - 250px);
    }
}
