.topo {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between; /* ADICIONADO */
}

.topo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.info-topo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1; /* ADICIONADO */
}

.info-topo h1 {
    margin-bottom: 10px;
}

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

.topo audio {
    margin-right: 100px;
}

iframe {
    max-width: 100%;
}