body {
    margin: 0;
    padding: 0;
    background-color: whitesmoke;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-image {
    width: 500px;
    margin-bottom: 20px;
    width: 410px;
    height: 410px;
}
 
.language-buttons {
    display: flex;
    gap: 10px;
}

.language-button {
    border: none;
    background: none;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.language-button:hover {
    transform: scale(1.1);
}

.language-button img {
    width: 72px;
    height: 72px;
}

.language-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    border: 1px solid #ccc;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    background-color: #f6f3f1;
    transition: transform 0.2s ease-in-out;
    width: 120px;
}

.language-option span {
    font-size: 13px;
    margin-top: 8px;
    font-weight: 500;
    color: #333;
    text-align: center;
}

.language-option:hover {
    transform: translateY(-2px);
}

.container {
    margin-top: 80px; /* controla a descida */
    display: flex;
    flex-direction: column;
    align-items: center;
}