@font-face {
    font-family: "StemPanini"; /* Nome que você vai usar */
    src: url("../fonts/StemPanini.otf") format("opentype"); /* Caminho e formato */
    font-weight: normal;
    font-style: normal;
}

.stem-panini {
    font-family: "StemPanini";
    font-size: 25px;
}

.navbar-custom {
    background-color: #04202c;
}

/* Logo */
.navbar-custom .navbar-brand img {
    border-radius: 6px;
}

/* Links */
.navbar-custom .nav-link {
    color: #c9d1d9;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-custom .nav-link:hover {
    color: #ffffff;
}

.navbar-custom .nav-link.active {
    color: #ffffff;
}

a.btn,
a.btn:hover {
    background-color: #eff0f0;
    color: #3e7791;
}

/* formulário de adição de figurinhas */
.sticky-bar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    border-bottom: 1px solid #ddd;
}

.figurinhas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.figurinhas-grid > div{
    flex: 0 0 auto;
}

.figurinha-btn{
    white-space: nowrap;
}

@media (min-width: 768px) {
    .figurinhas-grid {
        grid-template-columns: repeat(10, 1fr);
    }
}

@media (min-width: 1200px) {
    .figurinhas-grid {
        grid-template-columns: repeat(20, 1fr);
    }
}

.figurinha-label {
    width: 100%;
    text-align: center;
    font-weight: 500;
}

.accordion-button {
    padding: 6px 4px;
    font-size: 1.5rem;
}

.contador {
    font-size: 0.65rem;
    color: #555;
}

/* inventário */

body {
    background: #f5f7fa;
}

.section-title {
    font-weight: 700;
    margin-bottom: 1rem;
}

.faltante-card {
    text-align: center;
    font-weight: 600;
    cursor: default;
    transition: 0.2s;
}

.faltante-card:hover {
    transform: translateY(-2px);
}

.faltantes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

@media (min-width: 768px) {
    .faltantes-grid {
        grid-template-columns: repeat(8, 1fr);
    }
}

@media (min-width: 1200px) {
    .faltantes-grid {
        grid-template-columns: repeat(14, 1fr);
    }
}

.stat-card h2 {
    margin: 0;
    font-weight: 700;
}

.baixa-btn {
    width: 42px;
}

li {
    list-style: none;
    text-indent: 0;
}