@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.container {
    max-width: 900px;
    width: 90%;
    margin: auto;
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-grow: 1; /* Faz o conteúdo crescer para ocupar espaço disponível */
}

.menu-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.card {
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    border-radius: 12px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    padding: 30px;
    width: 260px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.card i {
    font-size: 50px;
    color: #3498db;
    margin-bottom: 20px;
}

.card h2 {
    margin: 0;
    color: #2c3e50;
    font-weight: 600;
}

.card p {
    color: #666;
    margin-top: 10px;
    font-size: 14px;
}

/* Footer transparente e centralizado */
footer {
    background: rgba(44, 62, 80, 0.9); /* Transparência no fundo */
    color: white;
    text-align: center;
    padding: 15px;
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    border-top: 2px solid #2980b9;
    position: relative;
}

footer p {
    margin: 5px 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 30px;
    }

    .card {
        width: 100%;
    }
}