/* =======================
   Geral e body
======================= */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f9fa; /* fundo suave */
    margin: 0;
    padding: 0;
}

.description {
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

/* =======================
   Formulário
======================= */
.form {
    max-width: 220px;
    display: block;
    width: 50%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .form {
        width: 80%; /* ajuste responsivo */
    }
}

.btn {
    margin-top: 2em;
}

/* =======================
   Tabelas e listas
======================= */
td {
    text-align: left;
}

th {
    text-align: right;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

/* =======================
   Botões e marcas
======================= */
.btn-outline-warning {
    color: #fff;
    border-color: #fff;
    transition: all 0.3s ease;
}

.btn-outline-warning:hover {
    color: #000;
    background-color: #fff;
    border-color: #000;
}

.active {
    color: #000;
    background-color: #fff;
    border-color: #fff;
}

/* =======================
   Accordion e Cards
======================= */
.card-header {
    font-weight: bold;
}

.accordion-button:not(.collapsed) {
    color: white;
    background-color: green;
    border: 0;
}

.accordion-button:focus {
    z-index: 3;
    border-color: black;
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
}

/* =======================
   Menu topo a toda largura
======================= */
.menu-topo {
    width: 100%;
    background-color: #ffc107; /* fundo amarelo */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    flex-wrap: wrap;
}

.menu-topo label {
    margin: 0 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    padding: 5px 10px;
}

.menu-topo label:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.menu-topo img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.menu-topo input.btn-check:checked + img,
.menu-topo .active img {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .menu-topo label {
        margin: 5px;
    }
}

/* =======================
   Footer
======================= */
.footer-pagina {
    width: 100%;
    background-color: #ffc107;
    color: #000;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9rem;
}

.footer-pagina a.footer-link {
    color: #000;
    text-decoration: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.footer-pagina a.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}
