.content {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;

}

.img-convite {
    width: 100%;
    height: auto;
    display: block;
    width: 100%;
}

#buttons-info {
    width: 100%;
    bottom: 3.8%;
    display: flex;
    flex-direction: column;
    position: absolute;
    padding: 0px 17%;
}

#buttons-info a {
    margin-bottom: 3%;
}

.img-convite-button {
    width: 100%;
    opacity: 1;
    transition: all 0.4s ease;
}

.img-convite-button:hover {
    scale: 0.98;
    opacity: 0.8;
}

/* 3. O Player 100% Proporcional */
.music-control {
    position: absolute;
    /* Posição ancorada em % sobre a imagem */
    top: 1.3%;    
    right: 10.5%; 

    /* AQUI ESTÁ O SEGREDO: */
    /* O tamanho é uma fatia da largura da imagem */
    width: 9%; 
    
    /* Mantém o círculo perfeito baseado na própria largura */
    aspect-ratio: 1 / 1; 
}

.btn-player {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;    
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* 4. O Ícone Proporcional ao Botão */
.btn-player i {
    /* Usamos 'cqw' ou uma porcentagem da largura do botão */
    /* Se o Tabler Icons não aceitar %, usamos 'em' baseado no container */
    font-size: 3.5vw; /* No desktop */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}


@media screen and (max-width: 859px) {

    .music-control {
        /* No mobile, aumentamos a proporção para 12% da imagem 
           para o dedo do usuário conseguir clicar fácil */
        width: 12%; 
        top: 1.09%;    
        right: 9%; 
    }

    .btn-player i {
        /* Aumenta o ícone proporcionalmente no mobile */
        font-size: 6.5vw; 
    }

    section {
        padding: 0;
    }
}