.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    height: 100vh; /* Garante que o contêiner ocupe a altura total da tela */
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 1px solid #007bff;
    border-radius: 10px;
    background-color: #f8f9fa;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
}

.header-icon {
    margin-right: 10px;
}

.header-text {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    color: #007bff;
}

.main-menu-container {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.menu-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    border: 1px solid #007bff;
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
    width: 120px;
    height: 120px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.menu-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.menu-text {
    font-size: 14px;
    color: #007bff;
    font-weight: bold;
}

.footer-menu-container {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 20px 0;
}
