.menu { 
    height: 100px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 15px 0;
    gap: 20px;
    list-style: none;
}

header {
    background-color: #eb80a0;
    height: 70px;
    box-shadow: 0 4px 6px #c24f72;
}
a { 
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: var(--tamanhoLink);
    text-decoration: none;
    color: #ffffff;
}

a:hover{
    color: #c24f72;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    padding: 10px 15px;
    transition: background 0.3s ease, color 0.3s ease;
    border-radius: 8px;
    }



@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}