/* Reset */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Background */
body {
    font-family: Arial, sans-serif;
    /*background: url('background-image.jpg') no-repeat center center fixed;
      background: url('background3.jpeg') no-repeat center center fixed;*/
    background-color: #f8f8f8;      
    background-size: cover;
    color: #333;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f8f8;
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header .logo img {
    height: 40px;
}

header .info {
    text-align: right;
    font-size: 14px;
}
.botao_texto_voltar {
    align-items: right;
    text-align: right;
}

/* Menu Container */
.menu-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 menus por linha */
    gap: 10px;
    padding: 10px;
}

@media (max-width: 768px) {
    .menu-container {
        grid-template-columns: repeat(3, 1fr); /* 3 menus por linha em tablets */
    }
}

@media (max-width: 480px) {
    .menu-container {
        grid-template-columns: repeat(4, 1fr); /* 4 menus por linha em celulares */
        gap: 5px; /* Espaçamento reduzido */
    }
}
.menu-item {
    color: #333; /* Cinza escuro (fallback) */
}

/* Menu Item */
.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5px; /* Ajustado para telas pequenas */
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    color: #fff;
    height: 40px; /* Altura reduzida pela metade */
    font-size: 9px; /* Texto ajustado */
    transition: transform 0.3s, background-color 0.3s;
}

.menu-item:nth-child(8) { background-color: #000000; /* Preto ou qualquer outra cor */ }


.menu-item i {
    font-size: 16px;
    margin-bottom: 3px; /* Ajustado para caber na altura menor */
}

.menu-item:hover {
    transform: scale(1.05);
}

/* Cores Diferentes para Cada Menu */
.menu-item:nth-child(1) { background-color: #d32f2f; /* Vermelho */ }
.menu-item:nth-child(2) { background-color: #1976d2; /* Azul */ }
.menu-item:nth-child(3) { background-color: #388e3c; /* Verde */ }
.menu-item:nth-child(4) { background-color: #fbc02d; /* Amarelo */ }
.menu-item:nth-child(5) { background-color: #7b1fa2; /* Roxo */ }
.menu-item:nth-child(6) { background-color: #009688; /* Turquesa */ }
.menu-item:nth-child(7) { background-color: #ff5722; /* Laranja */ }
.menu-item:nth-child(8) { background-color: #607d8b; /* Cinza */ }
.menu-item:nth-child(9) { background-color: #e91e63; /* Rosa */ }
.menu-item:nth-child(10) { background-color: #3f51b5; /* Azul Royal */ }
.menu-item:nth-child(11) { background-color: #00bcd4; /* Azul Claro */ }
.menu-item:nth-child(12) { background-color: #8bc34a; /* Verde Claro */ }
.menu-item:nth-child(13) { background-color: #ff9800; /* Laranja Claro */ }
.menu-item:nth-child(14) { background-color: #9e9e9e; /* Cinza Médio */ }
.menu-item:nth-child(15) { background-color: #795548; /* Marrom */ }
.menu-item:nth-child(16) { background-color: #9c27b0; /* Roxo Escuro */ }
.menu-item:nth-child(17) { background-color: #d32f2f; /* Vermelho */ }
.menu-item:nth-child(18) { background-color: #1976d2; /* Azul */ }
.menu-item:nth-child(19) { background-color: #388e3c; /* Verde */ }
.menu-item:nth-child(20) { background-color: #fbc02d; /* Amarelo */ }


